~ubuntu-branches/ubuntu/lucid/linux-rt/lucid

« back to all changes in this revision

Viewing changes to include/linux/mod_devicetable.h

  • Committer: Bazaar Package Importer
  • Author(s): Luke Yelavich
  • Date: 2009-08-05 23:00:52 UTC
  • Revision ID: james.westby@ubuntu.com-20090805230052-7xedvqcyk9dnnxb2
Tags: 2.6.31-1.1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
454
454
 
455
455
#define DMI_MATCH(a, b) { a, b }
456
456
 
 
457
#define PLATFORM_NAME_SIZE      20
 
458
#define PLATFORM_MODULE_PREFIX  "platform:"
 
459
 
 
460
struct platform_device_id {
 
461
        char name[PLATFORM_NAME_SIZE];
 
462
        kernel_ulong_t driver_data
 
463
                        __attribute__((aligned(sizeof(kernel_ulong_t))));
 
464
};
 
465
 
457
466
#endif /* LINUX_MOD_DEVICETABLE_H */