Skip to content

Commit

Permalink
[PATCH] trivial #if -> #ifdef
Browse files Browse the repository at this point in the history
Use '#ifdef' consistently on __KERNEL__.  This was reported as bug #5340
(isn't easier to send a fix than report the bug?!)

Signed-off-by: Diego Calleja <diegocg@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Diego Calleja authored and Linus Torvalds committed Oct 1, 2005
1 parent 2d8ab6a commit fd2e54b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/linux/mod_devicetable.h
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ struct of_device_id
char name[32];
char type[32];
char compatible[128];
#if __KERNEL__
#ifdef __KERNEL__
void *data;
#else
kernel_ulong_t data;
Expand Down

0 comments on commit fd2e54b

Please sign in to comment.