diff options
author | Sakari Ailus <sakari.ailus@iki.fi> | 2015-12-16 11:32:37 -0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2016-01-11 12:19:22 -0200 |
commit | 0798ce4a386d605af9ddbed724a8f4c8cccc1dab (patch) | |
tree | 25c124ba2fd95b0df564aaaf485711e3fb24c00d /drivers/media/media-entity.c | |
parent | 030e89ecab55b6e105e19fa830a7a7160237f19a (diff) | |
download | linux-stable-0798ce4a386d605af9ddbed724a8f4c8cccc1dab.tar.gz linux-stable-0798ce4a386d605af9ddbed724a8f4c8cccc1dab.tar.bz2 linux-stable-0798ce4a386d605af9ddbed724a8f4c8cccc1dab.zip |
[media] media: Move MEDIA_ENTITY_MAX_PADS from media-entity.h to media-entity.c
This isn't really a part of any interface drivers are expected to use. In
order to keep drivers from using it, hide it in media-entity.c. This was
always an arbitrary number and should be removed in the long run.
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/media-entity.c')
-rw-r--r-- | drivers/media/media-entity.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/media/media-entity.c b/drivers/media/media-entity.c index 5bd6f88501e2..32a5f8cae72d 100644 --- a/drivers/media/media-entity.c +++ b/drivers/media/media-entity.c @@ -276,6 +276,11 @@ static struct media_entity *stack_pop(struct media_entity_graph *graph) #define link_top(en) ((en)->stack[(en)->top].link) #define stack_top(en) ((en)->stack[(en)->top].entity) +/* + * TODO: Get rid of this. + */ +#define MEDIA_ENTITY_MAX_PADS 63 + /** * media_entity_graph_walk_init - Allocate resources for graph walk * @graph: Media graph structure that will be used to walk the graph |