V4L/DVB (5940): Export v4l2_int_device_{, un}register
authorAdrian Bunk <bunk@stusta.de>
Mon, 30 Jul 2007 14:43:55 +0000 (11:43 -0300)
committerMauro Carvalho Chehab <mchehab@infradead.org>
Wed, 10 Oct 2007 01:03:30 +0000 (22:03 -0300)
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>
drivers/media/video/v4l2-int-device.c

index aa2a8156338d1aa9c2c4ea96c457a67349267763..a643730fa3b29465525cbb8b8cc3346aa5337af9 100644 (file)
@@ -101,6 +101,7 @@ int v4l2_int_device_register(struct v4l2_int_device *d)
 
        return 0;
 }
+EXPORT_SYMBOL_GPL(v4l2_int_device_register);
 
 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);
 }
+EXPORT_SYMBOL_GPL(v4l2_int_device_unregister);
 
 /* Adapted from search_extable in extable.c. */
 static v4l2_int_ioctl_func *find_ioctl(struct v4l2_int_slave *slave, int cmd,
This page took 0.024333 seconds and 5 git commands to generate.