Skip to content

Commit

Permalink
V4L/DVB (5940): Export v4l2_int_device_{, un}register
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Adrian Bunk authored and Mauro Carvalho Chehab committed Oct 10, 2007
1 parent 92b3c1e commit 261efd1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/media/video/v4l2-int-device.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand All @@ -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,
Expand Down

0 comments on commit 261efd1

Please sign in to comment.