diff options
Diffstat (limited to 'include/media/v4l2-dev.h')
-rw-r--r-- | include/media/v4l2-dev.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/media/v4l2-dev.h b/include/media/v4l2-dev.h index 53f32022fabe..27634e8d2585 100644 --- a/include/media/v4l2-dev.h +++ b/include/media/v4l2-dev.h | |||
@@ -298,10 +298,10 @@ struct video_device | |||
298 | * media_entity_to_video_device - Returns a &struct video_device from | 298 | * media_entity_to_video_device - Returns a &struct video_device from |
299 | * the &struct media_entity embedded on it. | 299 | * the &struct media_entity embedded on it. |
300 | * | 300 | * |
301 | * @entity: pointer to &struct media_entity | 301 | * @__entity: pointer to &struct media_entity |
302 | */ | 302 | */ |
303 | #define media_entity_to_video_device(entity) \ | 303 | #define media_entity_to_video_device(__entity) \ |
304 | container_of(entity, struct video_device, entity) | 304 | container_of(__entity, struct video_device, entity) |
305 | 305 | ||
306 | /** | 306 | /** |
307 | * to_video_device - Returns a &struct video_device from the | 307 | * to_video_device - Returns a &struct video_device from the |