search for: upside_down

Displaying 1 result from an estimated 1 matches for "upside_down".

2020 Sep 09
17
[trivial PATCH] treewide: Convert switch/case fallthrough; to break;
...diff --git a/drivers/media/i2c/ov5640.c b/drivers/media/i2c/ov5640.c index 637687d761f2..855d3aba711a 100644 --- a/drivers/media/i2c/ov5640.c +++ b/drivers/media/i2c/ov5640.c @@ -3010,7 +3010,7 @@ static int ov5640_probe(struct i2c_client *client) switch (rotation) { case 180: sensor->upside_down = true; - fallthrough; + break; case 0: break; default: diff --git a/drivers/media/i2c/ov6650.c b/drivers/media/i2c/ov6650.c index d73f9f540932..fde56572dce8 100644 --- a/drivers/media/i2c/ov6650.c +++ b/drivers/media/i2c/ov6650.c @@ -685,17 +685,16 @@ static int ov6650_set_fmt(struct...