diff options
author | Hans J. Koch <hjk@linutronix.de> | 2010-04-12 20:03:25 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-04-13 06:32:42 -0400 |
commit | 829e0015431537176e38812f88fffe1d3250083e (patch) | |
tree | 585fa8fafbf09d629262f78c3b7ab2f578f35021 /drivers/net/can/mcp251x.c | |
parent | 5e10d4a7fc80e4ef310c07a6a547406fef50534a (diff) |
Fix some #includes in CAN drivers (rebased for net-next-2.6)
In the current implementation, CAN drivers need to #include <linux/can.h>
_before_ they #include <linux/can/dev.h>, which is both ugly and
unnecessary.
Fix this by including <linux/can.h> in <linux/can/dev.h> and remove the
#include <linux/can.h> lines from drivers.
Signed-off-by: Hans J. Koch <hjk@linutronix.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/can/mcp251x.c')
-rw-r--r-- | drivers/net/can/mcp251x.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/can/mcp251x.c b/drivers/net/can/mcp251x.c index eb898515352c..8431eb08075d 100644 --- a/drivers/net/can/mcp251x.c +++ b/drivers/net/can/mcp251x.c | |||
@@ -58,7 +58,6 @@ | |||
58 | * | 58 | * |
59 | */ | 59 | */ |
60 | 60 | ||
61 | #include <linux/can.h> | ||
62 | #include <linux/can/core.h> | 61 | #include <linux/can/core.h> |
63 | #include <linux/can/dev.h> | 62 | #include <linux/can/dev.h> |
64 | #include <linux/can/platform/mcp251x.h> | 63 | #include <linux/can/platform/mcp251x.h> |