aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-powerpc/dcr-mmio.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-powerpc/dcr-mmio.h')
-rw-r--r--include/asm-powerpc/dcr-mmio.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/asm-powerpc/dcr-mmio.h b/include/asm-powerpc/dcr-mmio.h
index 5dbfca8dde36..6b82c3ba495a 100644
--- a/include/asm-powerpc/dcr-mmio.h
+++ b/include/asm-powerpc/dcr-mmio.h
@@ -23,7 +23,11 @@
23 23
24#include <asm/io.h> 24#include <asm/io.h>
25 25
26typedef struct { void __iomem *token; unsigned int stride; } dcr_host_t; 26typedef struct {
27 void __iomem *token;
28 unsigned int stride;
29 unsigned int base;
30} dcr_host_t;
27 31
28#define DCR_MAP_OK(host) ((host).token != NULL) 32#define DCR_MAP_OK(host) ((host).token != NULL)
29 33