mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-07-21 23:57:36 -04:00
media: mc-entity: Drop ifdef for media_entity_cleanup definition
The media_entity_cleanup() function is defined in media-entity.h as a static inline no-op when CONFIG_MEDIA_CONTROLLER is enabled, and as a no-op macro otherwise. This complexity is unneeded. Use a static inline function in all cases. Reviewed-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com> Link: https://patch.msgid.link/20260506165438.1767378-2-laurent.pinchart@ideasonboard.com Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Hans Verkuil <hverkuil+cisco@kernel.org>
This commit is contained in:
committed by
Hans Verkuil
parent
b3a035a022
commit
aef73a9dad
@@ -729,11 +729,9 @@ int media_entity_pads_init(struct media_entity *entity, u16 num_pads,
|
||||
* zeroed but that has not been initialized with media_entity_pads_init() is
|
||||
* valid and is a no-op.
|
||||
*/
|
||||
#if IS_ENABLED(CONFIG_MEDIA_CONTROLLER)
|
||||
static inline void media_entity_cleanup(struct media_entity *entity) {}
|
||||
#else
|
||||
#define media_entity_cleanup(entity) do { } while (false)
|
||||
#endif
|
||||
static inline void media_entity_cleanup(struct media_entity *entity)
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* media_get_pad_index() - retrieves a pad index from an entity
|
||||
|
||||
Reference in New Issue
Block a user