DRVMGR: renamed RES_EMPTY to DRVMGR_RES_EMPTY

This commit is contained in:
Daniel Hellstrom
2015-04-13 11:31:53 +02:00
parent 4d3e70f4a6
commit bef5e23ef6
4 changed files with 4 additions and 4 deletions

View File

@@ -61,7 +61,7 @@ struct drvmgr_bus_res leon2_amba_res __attribute__((weak)) =
{
.next = NULL,
.resource = {
RES_EMPTY
DRVMGR_RES_EMPTY
},
};

View File

@@ -54,7 +54,7 @@ struct drvmgr_bus_res grlib_drv_resources __attribute__((weak)) =
.next = NULL,
.resource =
{
RES_EMPTY,
DRVMGR_RES_EMPTY,
}
};

View File

@@ -179,7 +179,7 @@ enum drvmgr_kt {
};
#define DRVMGR_KEY_EMPTY {NULL, DRVMGR_KT_NONE, {0}}
#define RES_EMPTY {0, 0, NULL}
#define DRVMGR_RES_EMPTY {0, 0, NULL}
#define MMAP_EMPTY {0, 0, 0}
/*! Union of different values */

View File

@@ -115,7 +115,7 @@ struct drvmgr_func pcibus_funcs[] = {
struct drvmgr_bus_res pcibus_drv_resources __attribute__((weak)) = {
.next = NULL,
.resource = {
RES_EMPTY,
DRVMGR_RES_EMPTY,
},
};