diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2016-12-09 01:22:42 +0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2016-12-12 12:43:50 +0300 |
commit | 6e98bee2899549c7482b05b0740bf195493ef9dc (patch) | |
tree | 64bc867ee4f52725950c632b6bc3b287227748a8 /drivers/media/i2c/tvp5150.c | |
parent | 406ff67d5820f592ff2b5ac2643a75f001b1d21f (diff) | |
download | linux-6e98bee2899549c7482b05b0740bf195493ef9dc.tar.xz |
[media] v4l: tvp5150: Don't inline the tvp5150_selmux() function
The function is large and called in several places, don't inline it.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/i2c/tvp5150.c')
-rw-r--r-- | drivers/media/i2c/tvp5150.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/i2c/tvp5150.c b/drivers/media/i2c/tvp5150.c index 08384951c9e5..febe6833a504 100644 --- a/drivers/media/i2c/tvp5150.c +++ b/drivers/media/i2c/tvp5150.c @@ -258,7 +258,7 @@ static int tvp5150_log_status(struct v4l2_subdev *sd) Basic functions ****************************************************************************/ -static inline void tvp5150_selmux(struct v4l2_subdev *sd) +static void tvp5150_selmux(struct v4l2_subdev *sd) { int opmode = 0; struct tvp5150 *decoder = to_tvp5150(sd); |