Go to the documentation of this file.
23 #ifndef _MEDIA_ENTITY_H
24 #define _MEDIA_ENTITY_H
26 #include <linux/list.h>
115 #define MEDIA_ENTITY_ENUM_MAX_DEPTH 16
148 #define media_entity_call(entity, operation, args...) \
149 (((entity)->ops && (entity)->ops->operation) ? \
150 (entity)->ops->operation((entity) , ##args) : -ENOIOCTLCMD)