summaryrefslogtreecommitdiff
path: root/drivers/media/media-device.c
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@osg.samsung.com>2015-12-16 15:53:04 (GMT)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>2016-01-11 14:19:22 (GMT)
commit92777994a52e6c1fe0a6156a8b49e83efea6fd2c (patch)
treed4dad944838e23813a302a8795bb2d470b4ed9ff /drivers/media/media-device.c
parent0798ce4a386d605af9ddbed724a8f4c8cccc1dab (diff)
downloadlinux-92777994a52e6c1fe0a6156a8b49e83efea6fd2c.tar.xz
[media] move documentation to the header files
Some exported functions were still documented at the .c file, instead of documenting at the .h one. Move the documentation to the right place, as we only use headers at media device-drivers.xml DocBook. Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/media-device.c')
-rw-r--r--drivers/media/media-device.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/drivers/media/media-device.c b/drivers/media/media-device.c
index ce97f8f..fd67b34d 100644
--- a/drivers/media/media-device.c
+++ b/drivers/media/media-device.c
@@ -577,13 +577,6 @@ int __must_check media_device_register_entity(struct media_device *mdev,
}
EXPORT_SYMBOL_GPL(media_device_register_entity);
-/**
- * media_device_unregister_entity - Unregister an entity
- * @entity: The entity
- *
- * If the entity has never been registered this function will return
- * immediately.
- */
static void __media_device_unregister_entity(struct media_entity *entity)
{
struct media_device *mdev = entity->graph_obj.mdev;
@@ -627,7 +620,6 @@ void media_device_unregister_entity(struct media_entity *entity)
}
EXPORT_SYMBOL_GPL(media_device_unregister_entity);
-
/**
* media_device_init() - initialize a media device
* @mdev: The media device
@@ -652,11 +644,6 @@ void media_device_init(struct media_device *mdev)
}
EXPORT_SYMBOL_GPL(media_device_init);
-/**
- * media_device_cleanup() - Cleanup a media device
- * @mdev: The media device
- *
- */
void media_device_cleanup(struct media_device *mdev)
{
ida_destroy(&mdev->entity_internal_idx);
@@ -665,13 +652,6 @@ void media_device_cleanup(struct media_device *mdev)
}
EXPORT_SYMBOL_GPL(media_device_cleanup);
-/**
- * __media_device_register() - register a media device
- * @mdev: The media device
- * @owner: The module owner
- *
- * returns zero on success or a negative error code.
- */
int __must_check __media_device_register(struct media_device *mdev,
struct module *owner)
{
@@ -701,13 +681,6 @@ int __must_check __media_device_register(struct media_device *mdev,
}
EXPORT_SYMBOL_GPL(__media_device_register);
-/**
- * media_device_unregister - unregister a media device
- * @mdev: The media device
- *
- * It is safe to call this function on an unregistered
- * (but initialised) media device.
- */
void media_device_unregister(struct media_device *mdev)
{
struct media_entity *entity;