diff options
author | Adrian Bunk <bunk@stusta.de> | 2007-07-30 10:43:55 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-10-09 21:03:30 -0400 |
commit | 261efd12fc291e6b3b42011201bfd011484ad90b (patch) | |
tree | f9af48439c47a0929cb45ee8c2357de132c0c579 /drivers/media/video/v4l2-int-device.c | |
parent | 92b3c1ec128695e606fc435d0b68902105d585bb (diff) |
V4L/DVB (5940): Export v4l2_int_device_{, un}register
This patch fixes the following build error:
<-- snip -->
...
MODPOST 2135 modules
make[2]: *** [__modpost] Error 1
<-- snip -->
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/v4l2-int-device.c')
-rw-r--r-- | drivers/media/video/v4l2-int-device.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/media/video/v4l2-int-device.c b/drivers/media/video/v4l2-int-device.c index aa2a8156338..a643730fa3b 100644 --- a/drivers/media/video/v4l2-int-device.c +++ b/drivers/media/video/v4l2-int-device.c | |||
@@ -101,6 +101,7 @@ int v4l2_int_device_register(struct v4l2_int_device *d) | |||
101 | 101 | ||
102 | return 0; | 102 | return 0; |
103 | } | 103 | } |
104 | EXPORT_SYMBOL_GPL(v4l2_int_device_register); | ||
104 | 105 | ||
105 | void v4l2_int_device_unregister(struct v4l2_int_device *d) | 106 | void v4l2_int_device_unregister(struct v4l2_int_device *d) |
106 | { | 107 | { |
@@ -114,6 +115,7 @@ void v4l2_int_device_unregister(struct v4l2_int_device *d) | |||
114 | } | 115 | } |
115 | mutex_unlock(&mutex); | 116 | mutex_unlock(&mutex); |
116 | } | 117 | } |
118 | EXPORT_SYMBOL_GPL(v4l2_int_device_unregister); | ||
117 | 119 | ||
118 | /* Adapted from search_extable in extable.c. */ | 120 | /* Adapted from search_extable in extable.c. */ |
119 | static v4l2_int_ioctl_func *find_ioctl(struct v4l2_int_slave *slave, int cmd, | 121 | static v4l2_int_ioctl_func *find_ioctl(struct v4l2_int_slave *slave, int cmd, |