diff options
author | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-05-23 13:29:44 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-05-23 13:29:59 -0400 |
commit | f472c0b59f4e06c62d855a6158b9afb313ec6400 (patch) | |
tree | af8904976481307991aea82e7f63c9273ac41e7f /drivers/media/usb | |
parent | 668f91d4997634a78c947b210e19309726c30693 (diff) |
[media] em28xx: make em28xx_free_v4l2 static()
Changeset 95d2608b88 created this function, but declared it as
global, by mistake.
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'drivers/media/usb')
-rw-r--r-- | drivers/media/usb/em28xx/em28xx-video.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/usb/em28xx/em28xx-video.c b/drivers/media/usb/em28xx/em28xx-video.c index b9b9775aa9c4..0f8501f39fa7 100644 --- a/drivers/media/usb/em28xx/em28xx-video.c +++ b/drivers/media/usb/em28xx/em28xx-video.c | |||
@@ -1872,7 +1872,7 @@ static int radio_s_tuner(struct file *file, void *priv, | |||
1872 | * | 1872 | * |
1873 | * Called when all users of struct em28xx_v4l2 are gone | 1873 | * Called when all users of struct em28xx_v4l2 are gone |
1874 | */ | 1874 | */ |
1875 | void em28xx_free_v4l2(struct kref *ref) | 1875 | static void em28xx_free_v4l2(struct kref *ref) |
1876 | { | 1876 | { |
1877 | struct em28xx_v4l2 *v4l2 = container_of(ref, struct em28xx_v4l2, ref); | 1877 | struct em28xx_v4l2 *v4l2 = container_of(ref, struct em28xx_v4l2, ref); |
1878 | 1878 | ||