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 <stuart.yoder@nxp.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
46d669daa3
commit
e267dddd21
|
@ -17,6 +17,11 @@
|
||||||
#include "dpmcp.h"
|
#include "dpmcp.h"
|
||||||
#include <linux/msi.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
|
* fsl_mc_resource_pool_add_device - add allocatable device to a resource
|
||||||
* pool of a given MC bus
|
* pool of a given MC bus
|
||||||
|
|
|
@ -21,11 +21,6 @@
|
||||||
(strcmp((_mc_dev)->obj_desc.type, (_obj_desc)->type) == 0 && \
|
(strcmp((_mc_dev)->obj_desc.type, (_obj_desc)->type) == 0 && \
|
||||||
(_mc_dev)->obj_desc.id == (_obj_desc)->id)
|
(_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 irq_domain;
|
||||||
struct msi_domain_info;
|
struct msi_domain_info;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue