]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
[media] media-entity: remove unneded enclosing parenthesis
authorJavier Martinez Canillas <javier@osg.samsung.com>
Fri, 11 Dec 2015 17:16:36 +0000 (15:16 -0200)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Mon, 11 Jan 2016 14:19:10 +0000 (12:19 -0200)
Commit 86ee417578a2 ("[media] media: convert links from array to list")
had many changes that were automated using coccinelle but the semantic
patch was not smart enough to rely on operators precedence and avoid
using unnecessary enclosing parenthesis.

This patch removes them since are not needed.

Suggested-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/media-entity.c

index ada2b44ea4e15dff03adf1520457d369f044ff9d..181ca0de6e523a6e2b4137c1590d50868dc38d45 100644 (file)
@@ -225,7 +225,7 @@ static void stack_push(struct media_entity_graph *graph,
                return;
        }
        graph->top++;
-       graph->stack[graph->top].link = (&entity->links)->next;
+       graph->stack[graph->top].link = entity->links.next;
        graph->stack[graph->top].entity = entity;
 }
 
@@ -268,7 +268,7 @@ media_entity_graph_walk_next(struct media_entity_graph *graph)
         * top of the stack until no more entities on the level can be
         * found.
         */
-       while (link_top(graph) != &(stack_top(graph)->links)) {
+       while (link_top(graph) != &stack_top(graph)->links) {
                struct media_entity *entity = stack_top(graph);
                struct media_link *link;
                struct media_entity *next;