diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2011-07-25 11:52:11 -0400 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2011-07-25 11:52:11 -0400 |
commit | 85cad1b0b6409c62bce4828da2fd8a535e2148b0 (patch) | |
tree | 2fc11aea0ed6a4dd13f81c77b5cddd3926daa2b5 /arch/arm | |
parent | b6844e8f64920cdee620157252169ba63afb0c89 (diff) |
arm/dt: Add dt machine definition
This patch adds a DT_MACHINE_START macro to use instead of
MACHINE_START when creating a machine_desc that supports using the
device tree.
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/include/asm/mach/arch.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/include/asm/mach/arch.h b/arch/arm/include/asm/mach/arch.h index 3281fb4b12e3..217aa1911dd7 100644 --- a/arch/arm/include/asm/mach/arch.h +++ b/arch/arm/include/asm/mach/arch.h | |||
@@ -74,4 +74,11 @@ static const struct machine_desc __mach_desc_##_type \ | |||
74 | #define MACHINE_END \ | 74 | #define MACHINE_END \ |
75 | }; | 75 | }; |
76 | 76 | ||
77 | #define DT_MACHINE_START(_name, _namestr) \ | ||
78 | static const struct machine_desc __mach_desc_##_name \ | ||
79 | __used \ | ||
80 | __attribute__((__section__(".arch.info.init"))) = { \ | ||
81 | .nr = ~0, \ | ||
82 | .name = _namestr, | ||
83 | |||
77 | #endif | 84 | #endif |