| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2009-01-15 | include of <linux/types.h> is preferred over <asm/types.h> | Jaswinder Singh Rajput | |
| Impact: fix 15 make headers_check warnings: include of <linux/types.h> is preferred over <asm/types.h> Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com> Cc: Ingo Molnar <mingo@elte.hu> Cc: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> | |||
| 2003-09-06 | [PATCH] use size_t for the broken ioctl numbers | Matthew Wilcox | |
| The ioctl number-generating macros should be used like #define XXXX _IOR(n,x,type-of-arg) which generates an ioctl number that has the size of the argument encoded within it. But there are a number of ioctl #defines that look like #define XXXX _IOR(n,x,sizeof(type-of-arg)) which is very wrong: the _IO/_IOR/_IOW/_IOWR macros will do the sizeof() on the argtype themselves, so the end result is that we will be doing a sizeof(sizeof(argtype)), ie a sizeof(size_t). In other words, the argtype didn't matter at all, and ended up totally pointless. Clearly it's too late to change the ioctl definitions, but we can at least stop people from copying them and making the same mistake. | |||
| 2002-11-13 | Grabbed the PPC drivers and in the process of porting to the latest api. Can ↵ | James Simmons | |
| now use driver specific read and write functions | |||
