Commit 261efd12 authored by Adrian Bunk's avatar Adrian Bunk Committed by Mauro Carvalho Chehab

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: default avatarAdrian Bunk <bunk@stusta.de>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 92b3c1ec
...@@ -101,6 +101,7 @@ int v4l2_int_device_register(struct v4l2_int_device *d) ...@@ -101,6 +101,7 @@ int v4l2_int_device_register(struct v4l2_int_device *d)
return 0; return 0;
} }
EXPORT_SYMBOL_GPL(v4l2_int_device_register);
void v4l2_int_device_unregister(struct v4l2_int_device *d) void v4l2_int_device_unregister(struct v4l2_int_device *d)
{ {
...@@ -114,6 +115,7 @@ void v4l2_int_device_unregister(struct v4l2_int_device *d) ...@@ -114,6 +115,7 @@ void v4l2_int_device_unregister(struct v4l2_int_device *d)
} }
mutex_unlock(&mutex); mutex_unlock(&mutex);
} }
EXPORT_SYMBOL_GPL(v4l2_int_device_unregister);
/* Adapted from search_extable in extable.c. */ /* Adapted from search_extable in extable.c. */
static v4l2_int_ioctl_func *find_ioctl(struct v4l2_int_slave *slave, int cmd, static v4l2_int_ioctl_func *find_ioctl(struct v4l2_int_slave *slave, int cmd,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment