diff options
author | Rob Herring <rob.herring@calxeda.com> | 2013-04-19 18:32:15 -0400 |
---|---|---|
committer | Grant Likely <grant.likely@linaro.org> | 2013-06-12 07:37:33 -0400 |
commit | 8973ba8b325f8c084815a3021c427c6fa3017a5d (patch) | |
tree | 6abc701bb80a01da6d975b4de0df7cba2b8883f5 /drivers/usb | |
parent | f70c64f8b095c0c386840f2036a79523bfd66725 (diff) |
usb: chipidea: depend on CONFIG_OF instead of CONFIG_OF_DEVICE
CONFIG_OF_DEVICE is going away, so use CONFIG_OF instead. It does not
appear that CONFIG_OF_DEVICE was the correct dependency either.
Signed-off-by: Rob Herring <rob.herring@calxeda.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Tested-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Grant Likely <grant.likely@linaro.org>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/chipidea/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/chipidea/Makefile b/drivers/usb/chipidea/Makefile index 4ab83e98219b..4113febdb432 100644 --- a/drivers/usb/chipidea/Makefile +++ b/drivers/usb/chipidea/Makefile | |||
@@ -16,6 +16,6 @@ ifneq ($(CONFIG_PCI),) | |||
16 | obj-$(CONFIG_USB_CHIPIDEA) += ci13xxx_pci.o | 16 | obj-$(CONFIG_USB_CHIPIDEA) += ci13xxx_pci.o |
17 | endif | 17 | endif |
18 | 18 | ||
19 | ifneq ($(CONFIG_OF_DEVICE),) | 19 | ifneq ($(CONFIG_OF),) |
20 | obj-$(CONFIG_USB_CHIPIDEA) += ci13xxx_imx.o usbmisc_imx.o | 20 | obj-$(CONFIG_USB_CHIPIDEA) += ci13xxx_imx.o usbmisc_imx.o |
21 | endif | 21 | endif |