From: Stuart Yoder Date: Tue, 23 Aug 2016 22:13:17 +0000 (-0500) Subject: staging: fsl-mc: move allocator private definitions out of mc-bus.h X-Git-Tag: v4.14-rc1~2366^2~847 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e267dddd212e62190bcc42441ed189dfa323724c;p=platform%2Fkernel%2Flinux-rpi.git staging: fsl-mc: move allocator private definitions out of mc-bus.h move definitions private to the allocator out of mc-bus.h and into allocator.c Signed-off-by: Stuart Yoder Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/fsl-mc/bus/fsl-mc-allocator.c b/drivers/staging/fsl-mc/bus/fsl-mc-allocator.c index 3ebaecb..6550564 100644 --- a/drivers/staging/fsl-mc/bus/fsl-mc-allocator.c +++ b/drivers/staging/fsl-mc/bus/fsl-mc-allocator.c @@ -17,6 +17,11 @@ #include "dpmcp.h" #include +#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 diff --git a/drivers/staging/fsl-mc/include/mc-bus.h b/drivers/staging/fsl-mc/include/mc-bus.h index 7f847e6..f192aa8 100644 --- a/drivers/staging/fsl-mc/include/mc-bus.h +++ b/drivers/staging/fsl-mc/include/mc-bus.h @@ -21,11 +21,6 @@ (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;