]> git.karo-electronics.de Git - linux-beck.git/commitdiff
staging: fsl-mc: move allocator private definitions out of mc-bus.h
authorStuart Yoder <stuart.yoder@nxp.com>
Tue, 23 Aug 2016 22:13:17 +0000 (17:13 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 1 Sep 2016 15:57:25 +0000 (17:57 +0200)
move definitions private to the allocator out of mc-bus.h and into
allocator.c

Signed-off-by: Stuart Yoder <stuart.yoder@nxp.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/fsl-mc/bus/fsl-mc-allocator.c
drivers/staging/fsl-mc/include/mc-bus.h

index 3ebaecbc1ec02269d3e062cc88065a1740c18447..655056480414548a279f41ad47f49fa3a7788c19 100644 (file)
 #include "dpmcp.h"
 #include <linux/msi.h>
 
+#define FSL_MC_IS_ALLOCATABLE(_obj_type) \
+       (strcmp(_obj_type, "dpbp") == 0 || \
+        strcmp(_obj_type, "dpmcp") == 0 || \
+        strcmp(_obj_type, "dpcon") == 0)
+
 /**
  * fsl_mc_resource_pool_add_device - add allocatable device to a resource
  * pool of a given MC bus
index 7f847e6734f34e6238d6fe96ba13a9922e4fe23c..f192aa8f07b9d1c381fdf922ae21e055819fefcd 100644 (file)
        (strcmp((_mc_dev)->obj_desc.type, (_obj_desc)->type) == 0 && \
         (_mc_dev)->obj_desc.id == (_obj_desc)->id)
 
-#define FSL_MC_IS_ALLOCATABLE(_obj_type) \
-       (strcmp(_obj_type, "dpbp") == 0 || \
-        strcmp(_obj_type, "dpmcp") == 0 || \
-        strcmp(_obj_type, "dpcon") == 0)
-
 struct irq_domain;
 struct msi_domain_info;