~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to arch/arm/include/asm/mach/arch.h

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
#define MACHINE_END                             \
71
71
};
72
72
 
73
 
#define MACH_TYPE_DT    0xffffffff
74
 
 
75
 
#define DT_MACHINE_START(_name, _namestr)               \
76
 
static const struct machine_desc __mach_desc_##_name    \
77
 
 __used                                                 \
78
 
 __attribute__((__section__(".arch.info.init"))) = {    \
79
 
        .nr             = MACH_TYPE_DT,                 \
80
 
        .name           = _namestr,
81
 
 
82
73
#endif