diff options
author | Joe Perches <joe@perches.com> | 2008-03-21 14:06:25 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2008-03-26 00:17:42 -0400 |
commit | c3033b01d763aff572080db09ddcebed115b9cf5 (patch) | |
tree | b75bb33ba85185c9d6775ceafad09a103f643b35 /drivers/net/e1000/e1000_osdep.h | |
parent | f89e6e3834035c6e8203042f3527931aa7f52496 (diff) |
e1000: Convert boolean_t to bool
On Thu, 2008-03-06 at 10:07 -0800, Kok, Auke wrote:
> send me a patch for e1000 and for ixgb and I'll happily apply those :)
boolean_t to bool
TRUE to true
FALSE to false
comment typo ahread to ahead
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/e1000/e1000_osdep.h')
-rw-r--r-- | drivers/net/e1000/e1000_osdep.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/net/e1000/e1000_osdep.h b/drivers/net/e1000/e1000_osdep.h index 10af742d8a20..365626d3177e 100644 --- a/drivers/net/e1000/e1000_osdep.h +++ b/drivers/net/e1000/e1000_osdep.h | |||
@@ -41,13 +41,6 @@ | |||
41 | #include <linux/interrupt.h> | 41 | #include <linux/interrupt.h> |
42 | #include <linux/sched.h> | 42 | #include <linux/sched.h> |
43 | 43 | ||
44 | typedef enum { | ||
45 | #undef FALSE | ||
46 | FALSE = 0, | ||
47 | #undef TRUE | ||
48 | TRUE = 1 | ||
49 | } boolean_t; | ||
50 | |||
51 | #ifdef DBG | 44 | #ifdef DBG |
52 | #define DEBUGOUT(S) printk(KERN_DEBUG S "\n") | 45 | #define DEBUGOUT(S) printk(KERN_DEBUG S "\n") |
53 | #define DEBUGOUT1(S, A...) printk(KERN_DEBUG S "\n", A) | 46 | #define DEBUGOUT1(S, A...) printk(KERN_DEBUG S "\n", A) |