Oliver Hartkopp | ccb2963 | 2007-11-16 15:56:08 -0800 | [diff] [blame] | 1 | # |
| 2 | # Makefile for the Linux Controller Area Network drivers. |
| 3 | # |
| 4 | |
| 5 | obj-$(CONFIG_CAN_VCAN) += vcan.o |
Oliver Hartkopp | a1044e3 | 2010-12-02 10:57:59 +0000 | [diff] [blame] | 6 | obj-$(CONFIG_CAN_SLCAN) += slcan.o |
Wolfgang Grandegger | 39549ee | 2009-05-15 23:39:29 +0000 | [diff] [blame] | 7 | |
| 8 | obj-$(CONFIG_CAN_DEV) += can-dev.o |
| 9 | can-dev-y := dev.o |
| 10 | |
Fabio Baltieri | 996a953 | 2012-12-18 18:50:55 +0100 | [diff] [blame] | 11 | can-dev-$(CONFIG_CAN_LEDS) += led.o |
| 12 | |
Sebastian Haas | 702171a | 2009-09-16 02:04:20 +0000 | [diff] [blame] | 13 | obj-y += usb/ |
Kurt Van Dijck | 03fd3cf | 2011-01-11 04:32:31 +0000 | [diff] [blame] | 14 | obj-y += softing/ |
Sebastian Haas | 702171a | 2009-09-16 02:04:20 +0000 | [diff] [blame] | 15 | |
Wolfgang Grandegger | 429da1c | 2009-05-15 23:39:30 +0000 | [diff] [blame] | 16 | obj-$(CONFIG_CAN_SJA1000) += sja1000/ |
Wolfram Sang | afa17a5 | 2009-11-13 06:14:52 +0000 | [diff] [blame] | 17 | obj-$(CONFIG_CAN_MSCAN) += mscan/ |
Bhupesh Sharma | 881ff67 | 2011-02-13 22:51:44 -0800 | [diff] [blame] | 18 | obj-$(CONFIG_CAN_C_CAN) += c_can/ |
Wolfgang Grandegger | 2a367c3 | 2011-11-30 23:41:18 +0000 | [diff] [blame] | 19 | obj-$(CONFIG_CAN_CC770) += cc770/ |
Marc Kleine-Budde | 68f4015 | 2009-09-22 14:46:57 -0700 | [diff] [blame] | 20 | obj-$(CONFIG_CAN_AT91) += at91_can.o |
Anant Gole | 3758bf2 | 2009-10-07 02:59:47 +0000 | [diff] [blame] | 21 | obj-$(CONFIG_CAN_TI_HECC) += ti_hecc.o |
Christian Pellegrin | e000016 | 2009-11-02 23:07:00 +0000 | [diff] [blame] | 22 | obj-$(CONFIG_CAN_MCP251X) += mcp251x.o |
Barry Song | bbb8461 | 2009-12-10 23:46:28 +0000 | [diff] [blame] | 23 | obj-$(CONFIG_CAN_BFIN) += bfin_can.o |
Ira W. Snyder | 631eb22 | 2010-03-29 09:58:51 -0700 | [diff] [blame] | 24 | obj-$(CONFIG_CAN_JANZ_ICAN3) += janz-ican3.o |
Marc Kleine-Budde | e955cea | 2009-07-29 10:20:10 +0200 | [diff] [blame] | 25 | obj-$(CONFIG_CAN_FLEXCAN) += flexcan.o |
Masayuki Ohtake | b21d18b | 2010-10-15 03:00:28 +0000 | [diff] [blame] | 26 | obj-$(CONFIG_PCH_CAN) += pch_can.o |
Andreas Larsson | 6cec9b0 | 2012-11-15 08:47:14 +0100 | [diff] [blame] | 27 | obj-$(CONFIG_CAN_GRCAN) += grcan.o |
Wolfgang Grandegger | 429da1c | 2009-05-15 23:39:30 +0000 | [diff] [blame] | 28 | |
Wolfgang Grandegger | 39549ee | 2009-05-15 23:39:29 +0000 | [diff] [blame] | 29 | ccflags-$(CONFIG_CAN_DEBUG_DEVICES) := -DDEBUG |