Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 6170
b: refs/heads/master
c: 9e2d3cd
h: refs/heads/master
v: v3
  • Loading branch information
Al Viro authored and Linus Torvalds committed Aug 29, 2005
1 parent 4136d65 commit 132b7a1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5bbe6ab938208bb3d4e16f7a28b11fcddd4f9ff2
refs/heads/master: 9e2d3cd34a159948dc753a14573e16bffc04dba8
10 changes: 8 additions & 2 deletions trunk/include/linux/mod_devicetable.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ struct ieee1394_device_id {
__u32 model_id;
__u32 specifier_id;
__u32 version;
kernel_ulong_t driver_data;
kernel_ulong_t driver_data
__attribute__((aligned(sizeof(kernel_ulong_t))));
};


Expand Down Expand Up @@ -182,7 +183,11 @@ struct of_device_id
char name[32];
char type[32];
char compatible[128];
#if __KERNEL__
void *data;
#else
kernel_ulong_t data;
#endif
};


Expand All @@ -208,7 +213,8 @@ struct pcmcia_device_id {
#ifdef __KERNEL__
const char * prod_id[4];
#else
kernel_ulong_t prod_id[4];
kernel_ulong_t prod_id[4]
__attribute__((aligned(sizeof(kernel_ulong_t))));
#endif

/* not matched against */
Expand Down

0 comments on commit 132b7a1

Please sign in to comment.