diff options
author | Steven Miao <realmz6@gmail.com> | 2014-04-11 14:07:27 -0400 |
---|---|---|
committer | Steven Miao <realmz6@gmail.com> | 2014-04-11 20:48:01 -0400 |
commit | c4a2c58d20953ff1080f50f705cdd952f6d301b2 (patch) | |
tree | 9e604fad91d728839cbbea1549248339729a1829 /arch/blackfin/mach-bf609/boards/ezkit.c | |
parent | f8ef77d9389f9b52fe80de4f1b236af3391420b8 (diff) |
blackfin: cleanup board files
using IS_ENABLED() macro instead of defined(CONFIG_XXX) || defined(CONFIG_XXX_MODULE)
Signed-off-by: Steven Miao <realmz6@gmail.com>
Diffstat (limited to 'arch/blackfin/mach-bf609/boards/ezkit.c')
-rw-r--r-- | arch/blackfin/mach-bf609/boards/ezkit.c | 131 |
1 files changed, 58 insertions, 73 deletions
diff --git a/arch/blackfin/mach-bf609/boards/ezkit.c b/arch/blackfin/mach-bf609/boards/ezkit.c index 8de8bc690b36..943f7e95ec15 100644 --- a/arch/blackfin/mach-bf609/boards/ezkit.c +++ b/arch/blackfin/mach-bf609/boards/ezkit.c | |||
@@ -39,7 +39,7 @@ const char bfin_board_name[] = "ADI BF609-EZKIT"; | |||
39 | * Driver needs to know address, irq and flag pin. | 39 | * Driver needs to know address, irq and flag pin. |
40 | */ | 40 | */ |
41 | 41 | ||
42 | #if defined(CONFIG_USB_ISP1760_HCD) || defined(CONFIG_USB_ISP1760_HCD_MODULE) | 42 | #if IS_ENABLED(CONFIG_USB_ISP1760_HCD) |
43 | #include <linux/usb/isp1760.h> | 43 | #include <linux/usb/isp1760.h> |
44 | static struct resource bfin_isp1760_resources[] = { | 44 | static struct resource bfin_isp1760_resources[] = { |
45 | [0] = { | 45 | [0] = { |
@@ -74,7 +74,7 @@ static struct platform_device bfin_isp1760_device = { | |||
74 | }; | 74 | }; |
75 | #endif | 75 | #endif |
76 | 76 | ||
77 | #if defined(CONFIG_INPUT_BFIN_ROTARY) || defined(CONFIG_INPUT_BFIN_ROTARY_MODULE) | 77 | #if IS_ENABLED(CONFIG_INPUT_BFIN_ROTARY) |
78 | #include <asm/bfin_rotary.h> | 78 | #include <asm/bfin_rotary.h> |
79 | 79 | ||
80 | static struct bfin_rotary_platform_data bfin_rotary_data = { | 80 | static struct bfin_rotary_platform_data bfin_rotary_data = { |
@@ -105,7 +105,7 @@ static struct platform_device bfin_rotary_device = { | |||
105 | }; | 105 | }; |
106 | #endif | 106 | #endif |
107 | 107 | ||
108 | #if defined(CONFIG_STMMAC_ETH) || defined(CONFIG_STMMAC_ETH_MODULE) | 108 | #if IS_ENABLED(CONFIG_STMMAC_ETH) |
109 | #include <linux/stmmac.h> | 109 | #include <linux/stmmac.h> |
110 | #include <linux/phy.h> | 110 | #include <linux/phy.h> |
111 | 111 | ||
@@ -159,7 +159,7 @@ static struct platform_device bfin_eth_device = { | |||
159 | }; | 159 | }; |
160 | #endif | 160 | #endif |
161 | 161 | ||
162 | #if defined(CONFIG_INPUT_ADXL34X) || defined(CONFIG_INPUT_ADXL34X_MODULE) | 162 | #if IS_ENABLED(CONFIG_INPUT_ADXL34X) |
163 | #include <linux/input/adxl34x.h> | 163 | #include <linux/input/adxl34x.h> |
164 | static const struct adxl34x_platform_data adxl34x_info = { | 164 | static const struct adxl34x_platform_data adxl34x_info = { |
165 | .x_axis_offset = 0, | 165 | .x_axis_offset = 0, |
@@ -198,14 +198,14 @@ static const struct adxl34x_platform_data adxl34x_info = { | |||
198 | }; | 198 | }; |
199 | #endif | 199 | #endif |
200 | 200 | ||
201 | #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE) | 201 | #if IS_ENABLED(CONFIG_RTC_DRV_BFIN) |
202 | static struct platform_device rtc_device = { | 202 | static struct platform_device rtc_device = { |
203 | .name = "rtc-bfin", | 203 | .name = "rtc-bfin", |
204 | .id = -1, | 204 | .id = -1, |
205 | }; | 205 | }; |
206 | #endif | 206 | #endif |
207 | 207 | ||
208 | #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE) | 208 | #if IS_ENABLED(CONFIG_SERIAL_BFIN) |
209 | #ifdef CONFIG_SERIAL_BFIN_UART0 | 209 | #ifdef CONFIG_SERIAL_BFIN_UART0 |
210 | static struct resource bfin_uart0_resources[] = { | 210 | static struct resource bfin_uart0_resources[] = { |
211 | { | 211 | { |
@@ -355,7 +355,7 @@ static struct platform_device bfin_uart1_device = { | |||
355 | #endif | 355 | #endif |
356 | #endif | 356 | #endif |
357 | 357 | ||
358 | #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE) | 358 | #if IS_ENABLED(CONFIG_BFIN_SIR) |
359 | #ifdef CONFIG_BFIN_SIR0 | 359 | #ifdef CONFIG_BFIN_SIR0 |
360 | static struct resource bfin_sir0_resources[] = { | 360 | static struct resource bfin_sir0_resources[] = { |
361 | { | 361 | { |
@@ -408,7 +408,7 @@ static struct platform_device bfin_sir1_device = { | |||
408 | #endif | 408 | #endif |
409 | #endif | 409 | #endif |
410 | 410 | ||
411 | #if defined(CONFIG_USB_MUSB_HDRC) || defined(CONFIG_USB_MUSB_HDRC_MODULE) | 411 | #if IS_ENABLED(CONFIG_USB_MUSB_HDRC) |
412 | static struct resource musb_resources[] = { | 412 | static struct resource musb_resources[] = { |
413 | [0] = { | 413 | [0] = { |
414 | .start = 0xFFCC1000, | 414 | .start = 0xFFCC1000, |
@@ -464,7 +464,7 @@ static struct platform_device musb_device = { | |||
464 | }; | 464 | }; |
465 | #endif | 465 | #endif |
466 | 466 | ||
467 | #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE) | 467 | #if IS_ENABLED(CONFIG_SERIAL_BFIN_SPORT) |
468 | #ifdef CONFIG_SERIAL_BFIN_SPORT0_UART | 468 | #ifdef CONFIG_SERIAL_BFIN_SPORT0_UART |
469 | static struct resource bfin_sport0_uart_resources[] = { | 469 | static struct resource bfin_sport0_uart_resources[] = { |
470 | { | 470 | { |
@@ -569,7 +569,7 @@ static struct platform_device bfin_sport2_uart_device = { | |||
569 | #endif | 569 | #endif |
570 | #endif | 570 | #endif |
571 | 571 | ||
572 | #if defined(CONFIG_CAN_BFIN) || defined(CONFIG_CAN_BFIN_MODULE) | 572 | #if IS_ENABLED(CONFIG_CAN_BFIN) |
573 | 573 | ||
574 | static unsigned short bfin_can0_peripherals[] = { | 574 | static unsigned short bfin_can0_peripherals[] = { |
575 | P_CAN0_RX, P_CAN0_TX, 0 | 575 | P_CAN0_RX, P_CAN0_TX, 0 |
@@ -610,7 +610,7 @@ static struct platform_device bfin_can0_device = { | |||
610 | 610 | ||
611 | #endif | 611 | #endif |
612 | 612 | ||
613 | #if defined(CONFIG_MTD_NAND_BF5XX) || defined(CONFIG_MTD_NAND_BF5XX_MODULE) | 613 | #if IS_ENABLED(CONFIG_MTD_NAND_BF5XX) |
614 | static struct mtd_partition partition_info[] = { | 614 | static struct mtd_partition partition_info[] = { |
615 | { | 615 | { |
616 | .name = "bootloader(nand)", | 616 | .name = "bootloader(nand)", |
@@ -660,7 +660,7 @@ static struct platform_device bfin_nand_device = { | |||
660 | }; | 660 | }; |
661 | #endif | 661 | #endif |
662 | 662 | ||
663 | #if defined(CONFIG_SDH_BFIN) || defined(CONFIG_SDH_BFIN_MODULE) | 663 | #if IS_ENABLED(CONFIG_SDH_BFIN) |
664 | 664 | ||
665 | static struct bfin_sd_host bfin_sdh_data = { | 665 | static struct bfin_sd_host bfin_sdh_data = { |
666 | .dma_chan = CH_RSI, | 666 | .dma_chan = CH_RSI, |
@@ -677,7 +677,7 @@ static struct platform_device bfin_sdh_device = { | |||
677 | }; | 677 | }; |
678 | #endif | 678 | #endif |
679 | 679 | ||
680 | #if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE) | 680 | #if IS_ENABLED(CONFIG_MTD_PHYSMAP) |
681 | static struct mtd_partition ezkit_partitions[] = { | 681 | static struct mtd_partition ezkit_partitions[] = { |
682 | { | 682 | { |
683 | .name = "bootloader(nor)", | 683 | .name = "bootloader(nor)", |
@@ -741,8 +741,7 @@ static struct platform_device ezkit_flash_device = { | |||
741 | }; | 741 | }; |
742 | #endif | 742 | #endif |
743 | 743 | ||
744 | #if defined(CONFIG_MTD_M25P80) \ | 744 | #if IS_ENABLED(CONFIG_MTD_M25P80) |
745 | || defined(CONFIG_MTD_M25P80_MODULE) | ||
746 | /* SPI flash chip (w25q32) */ | 745 | /* SPI flash chip (w25q32) */ |
747 | static struct mtd_partition bfin_spi_flash_partitions[] = { | 746 | static struct mtd_partition bfin_spi_flash_partitions[] = { |
748 | { | 747 | { |
@@ -773,21 +772,20 @@ static struct bfin_spi3_chip spi_flash_chip_info = { | |||
773 | }; | 772 | }; |
774 | #endif | 773 | #endif |
775 | 774 | ||
776 | #if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE) | 775 | #if IS_ENABLED(CONFIG_SPI_SPIDEV) |
777 | static struct bfin_spi3_chip spidev_chip_info = { | 776 | static struct bfin_spi3_chip spidev_chip_info = { |
778 | .enable_dma = true, | 777 | .enable_dma = true, |
779 | }; | 778 | }; |
780 | #endif | 779 | #endif |
781 | 780 | ||
782 | #if defined(CONFIG_SND_BF5XX_I2S) || defined(CONFIG_SND_BF5XX_I2S_MODULE) | 781 | #if IS_ENABLED(CONFIG_SND_BF5XX_I2S) |
783 | static struct platform_device bfin_i2s_pcm = { | 782 | static struct platform_device bfin_i2s_pcm = { |
784 | .name = "bfin-i2s-pcm-audio", | 783 | .name = "bfin-i2s-pcm-audio", |
785 | .id = -1, | 784 | .id = -1, |
786 | }; | 785 | }; |
787 | #endif | 786 | #endif |
788 | 787 | ||
789 | #if defined(CONFIG_SND_BF6XX_SOC_I2S) || \ | 788 | #if IS_ENABLED(CONFIG_SND_BF6XX_SOC_I2S) |
790 | defined(CONFIG_SND_BF6XX_SOC_I2S_MODULE) | ||
791 | #include <asm/bfin_sport3.h> | 789 | #include <asm/bfin_sport3.h> |
792 | static struct resource bfin_snd_resources[] = { | 790 | static struct resource bfin_snd_resources[] = { |
793 | { | 791 | { |
@@ -841,8 +839,7 @@ static struct platform_device bfin_i2s = { | |||
841 | }; | 839 | }; |
842 | #endif | 840 | #endif |
843 | 841 | ||
844 | #if defined(CONFIG_SND_BF5XX_SOC_AD1836) \ | 842 | #if IS_ENABLED(CONFIG_SND_BF5XX_SOC_AD1836) |
845 | || defined(CONFIG_SND_BF5XX_SOC_AD1836_MODULE) | ||
846 | static const char * const ad1836_link[] = { | 843 | static const char * const ad1836_link[] = { |
847 | "bfin-i2s.0", | 844 | "bfin-i2s.0", |
848 | "spi0.76", | 845 | "spi0.76", |
@@ -856,14 +853,13 @@ static struct platform_device bfin_ad1836_machine = { | |||
856 | }; | 853 | }; |
857 | #endif | 854 | #endif |
858 | 855 | ||
859 | #if defined(CONFIG_SND_SOC_BFIN_EVAL_ADAU1X61) || \ | 856 | #if IS_ENABLED(CONFIG_SND_SOC_BFIN_EVAL_ADAU1X61) |
860 | defined(CONFIG_SND_SOC_BFIN_EVAL_ADAU1X61_MODULE) | ||
861 | static struct platform_device adau1761_device = { | 857 | static struct platform_device adau1761_device = { |
862 | .name = "bfin-eval-adau1x61", | 858 | .name = "bfin-eval-adau1x61", |
863 | }; | 859 | }; |
864 | #endif | 860 | #endif |
865 | 861 | ||
866 | #if defined(CONFIG_SND_SOC_ADAU1761) || defined(CONFIG_SND_SOC_ADAU1761_MODULE) | 862 | #if IS_ENABLED(CONFIG_SND_SOC_ADAU1761) |
867 | #include <sound/adau17x1.h> | 863 | #include <sound/adau17x1.h> |
868 | static struct adau1761_platform_data adau1761_info = { | 864 | static struct adau1761_platform_data adau1761_info = { |
869 | .lineout_mode = ADAU1761_OUTPUT_MODE_LINE, | 865 | .lineout_mode = ADAU1761_OUTPUT_MODE_LINE, |
@@ -871,8 +867,7 @@ static struct adau1761_platform_data adau1761_info = { | |||
871 | }; | 867 | }; |
872 | #endif | 868 | #endif |
873 | 869 | ||
874 | #if defined(CONFIG_VIDEO_BLACKFIN_CAPTURE) \ | 870 | #if IS_ENABLED(CONFIG_VIDEO_BLACKFIN_CAPTURE) |
875 | || defined(CONFIG_VIDEO_BLACKFIN_CAPTURE_MODULE) | ||
876 | #include <linux/videodev2.h> | 871 | #include <linux/videodev2.h> |
877 | #include <media/blackfin/bfin_capture.h> | 872 | #include <media/blackfin/bfin_capture.h> |
878 | #include <media/blackfin/ppi.h> | 873 | #include <media/blackfin/ppi.h> |
@@ -882,7 +877,7 @@ static const unsigned short ppi_req[] = { | |||
882 | P_PPI0_D4, P_PPI0_D5, P_PPI0_D6, P_PPI0_D7, | 877 | P_PPI0_D4, P_PPI0_D5, P_PPI0_D6, P_PPI0_D7, |
883 | P_PPI0_D8, P_PPI0_D9, P_PPI0_D10, P_PPI0_D11, | 878 | P_PPI0_D8, P_PPI0_D9, P_PPI0_D10, P_PPI0_D11, |
884 | P_PPI0_D12, P_PPI0_D13, P_PPI0_D14, P_PPI0_D15, | 879 | P_PPI0_D12, P_PPI0_D13, P_PPI0_D14, P_PPI0_D15, |
885 | #if !defined(CONFIG_VIDEO_VS6624) && !defined(CONFIG_VIDEO_VS6624_MODULE) | 880 | #if !IS_ENABLED(CONFIG_VIDEO_VS6624) |
886 | P_PPI0_D16, P_PPI0_D17, P_PPI0_D18, P_PPI0_D19, | 881 | P_PPI0_D16, P_PPI0_D17, P_PPI0_D18, P_PPI0_D19, |
887 | P_PPI0_D20, P_PPI0_D21, P_PPI0_D22, P_PPI0_D23, | 882 | P_PPI0_D20, P_PPI0_D21, P_PPI0_D22, P_PPI0_D23, |
888 | #endif | 883 | #endif |
@@ -898,8 +893,7 @@ static const struct ppi_info ppi_info = { | |||
898 | .pin_req = ppi_req, | 893 | .pin_req = ppi_req, |
899 | }; | 894 | }; |
900 | 895 | ||
901 | #if defined(CONFIG_VIDEO_VS6624) \ | 896 | #if IS_ENABLED(CONFIG_VIDEO_VS6624) |
902 | || defined(CONFIG_VIDEO_VS6624_MODULE) | ||
903 | static struct v4l2_input vs6624_inputs[] = { | 897 | static struct v4l2_input vs6624_inputs[] = { |
904 | { | 898 | { |
905 | .index = 0, | 899 | .index = 0, |
@@ -936,8 +930,7 @@ static struct bfin_capture_config bfin_capture_data = { | |||
936 | }; | 930 | }; |
937 | #endif | 931 | #endif |
938 | 932 | ||
939 | #if defined(CONFIG_VIDEO_ADV7842) \ | 933 | #if IS_ENABLED(CONFIG_VIDEO_ADV7842) |
940 | || defined(CONFIG_VIDEO_ADV7842_MODULE) | ||
941 | #include <media/adv7842.h> | 934 | #include <media/adv7842.h> |
942 | 935 | ||
943 | static struct v4l2_input adv7842_inputs[] = { | 936 | static struct v4l2_input adv7842_inputs[] = { |
@@ -1067,8 +1060,7 @@ static struct platform_device bfin_capture_device = { | |||
1067 | }; | 1060 | }; |
1068 | #endif | 1061 | #endif |
1069 | 1062 | ||
1070 | #if defined(CONFIG_VIDEO_BLACKFIN_DISPLAY) \ | 1063 | #if IS_ENABLED(CONFIG_VIDEO_BLACKFIN_DISPLAY) |
1071 | || defined(CONFIG_VIDEO_BLACKFIN_DISPLAY_MODULE) | ||
1072 | #include <linux/videodev2.h> | 1064 | #include <linux/videodev2.h> |
1073 | #include <media/blackfin/bfin_display.h> | 1065 | #include <media/blackfin/bfin_display.h> |
1074 | #include <media/blackfin/ppi.h> | 1066 | #include <media/blackfin/ppi.h> |
@@ -1090,8 +1082,7 @@ static const struct ppi_info ppi_info = { | |||
1090 | .pin_req = ppi_req_disp, | 1082 | .pin_req = ppi_req_disp, |
1091 | }; | 1083 | }; |
1092 | 1084 | ||
1093 | #if defined(CONFIG_VIDEO_ADV7511) \ | 1085 | #if IS_ENABLED(CONFIG_VIDEO_ADV7511) |
1094 | || defined(CONFIG_VIDEO_ADV7511_MODULE) | ||
1095 | #include <media/adv7511.h> | 1086 | #include <media/adv7511.h> |
1096 | 1087 | ||
1097 | static struct v4l2_output adv7511_outputs[] = { | 1088 | static struct v4l2_output adv7511_outputs[] = { |
@@ -1313,7 +1304,7 @@ static struct platform_device bfin_crypto_crc_device = { | |||
1313 | }; | 1304 | }; |
1314 | #endif | 1305 | #endif |
1315 | 1306 | ||
1316 | #if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE) | 1307 | #if IS_ENABLED(CONFIG_TOUCHSCREEN_AD7877) |
1317 | static const struct ad7877_platform_data bfin_ad7877_ts_info = { | 1308 | static const struct ad7877_platform_data bfin_ad7877_ts_info = { |
1318 | .model = 7877, | 1309 | .model = 7877, |
1319 | .vref_delay_usecs = 50, /* internal, no capacitor */ | 1310 | .vref_delay_usecs = 50, /* internal, no capacitor */ |
@@ -1679,7 +1670,7 @@ static struct platform_device bfin_gpg_device = { | |||
1679 | 1670 | ||
1680 | #endif | 1671 | #endif |
1681 | 1672 | ||
1682 | #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE) | 1673 | #if IS_ENABLED(CONFIG_KEYBOARD_GPIO) |
1683 | #include <linux/input.h> | 1674 | #include <linux/input.h> |
1684 | #include <linux/gpio_keys.h> | 1675 | #include <linux/gpio_keys.h> |
1685 | 1676 | ||
@@ -1702,8 +1693,7 @@ static struct platform_device bfin_device_gpiokeys = { | |||
1702 | #endif | 1693 | #endif |
1703 | 1694 | ||
1704 | static struct spi_board_info bfin_spi_board_info[] __initdata = { | 1695 | static struct spi_board_info bfin_spi_board_info[] __initdata = { |
1705 | #if defined(CONFIG_MTD_M25P80) \ | 1696 | #if IS_ENABLED(CONFIG_MTD_M25P80) |
1706 | || defined(CONFIG_MTD_M25P80_MODULE) | ||
1707 | { | 1697 | { |
1708 | /* the modalias must be the same as spi device driver name */ | 1698 | /* the modalias must be the same as spi device driver name */ |
1709 | .modalias = "m25p80", /* Name of spi_driver for this device */ | 1699 | .modalias = "m25p80", /* Name of spi_driver for this device */ |
@@ -1715,7 +1705,7 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = { | |||
1715 | .mode = SPI_MODE_3, | 1705 | .mode = SPI_MODE_3, |
1716 | }, | 1706 | }, |
1717 | #endif | 1707 | #endif |
1718 | #if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE) | 1708 | #if IS_ENABLED(CONFIG_TOUCHSCREEN_AD7877) |
1719 | { | 1709 | { |
1720 | .modalias = "ad7877", | 1710 | .modalias = "ad7877", |
1721 | .platform_data = &bfin_ad7877_ts_info, | 1711 | .platform_data = &bfin_ad7877_ts_info, |
@@ -1725,7 +1715,7 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = { | |||
1725 | .chip_select = MAX_CTRL_CS + GPIO_PC15, /* SPI_SSEL4 */ | 1715 | .chip_select = MAX_CTRL_CS + GPIO_PC15, /* SPI_SSEL4 */ |
1726 | }, | 1716 | }, |
1727 | #endif | 1717 | #endif |
1728 | #if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE) | 1718 | #if IS_ENABLED(CONFIG_SPI_SPIDEV) |
1729 | { | 1719 | { |
1730 | .modalias = "spidev", | 1720 | .modalias = "spidev", |
1731 | .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */ | 1721 | .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */ |
@@ -1734,7 +1724,7 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = { | |||
1734 | .controller_data = &spidev_chip_info, | 1724 | .controller_data = &spidev_chip_info, |
1735 | }, | 1725 | }, |
1736 | #endif | 1726 | #endif |
1737 | #if defined(CONFIG_INPUT_ADXL34X_SPI) || defined(CONFIG_INPUT_ADXL34X_SPI_MODULE) | 1727 | #if IS_ENABLED(CONFIG_INPUT_ADXL34X_SPI) |
1738 | { | 1728 | { |
1739 | .modalias = "adxl34x", | 1729 | .modalias = "adxl34x", |
1740 | .platform_data = &adxl34x_info, | 1730 | .platform_data = &adxl34x_info, |
@@ -1818,7 +1808,7 @@ static struct platform_device bf60x_spi_master1 = { | |||
1818 | }; | 1808 | }; |
1819 | #endif /* spi master and devices */ | 1809 | #endif /* spi master and devices */ |
1820 | 1810 | ||
1821 | #if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE) | 1811 | #if IS_ENABLED(CONFIG_I2C_BLACKFIN_TWI) |
1822 | static const u16 bfin_twi0_pins[] = {P_TWI0_SCL, P_TWI0_SDA, 0}; | 1812 | static const u16 bfin_twi0_pins[] = {P_TWI0_SCL, P_TWI0_SDA, 0}; |
1823 | 1813 | ||
1824 | static struct resource bfin_twi0_resource[] = { | 1814 | static struct resource bfin_twi0_resource[] = { |
@@ -1871,20 +1861,20 @@ static struct platform_device i2c_bfin_twi1_device = { | |||
1871 | #endif | 1861 | #endif |
1872 | 1862 | ||
1873 | static struct i2c_board_info __initdata bfin_i2c_board_info0[] = { | 1863 | static struct i2c_board_info __initdata bfin_i2c_board_info0[] = { |
1874 | #if defined(CONFIG_INPUT_ADXL34X_I2C) || defined(CONFIG_INPUT_ADXL34X_I2C_MODULE) | 1864 | #if IS_ENABLED(CONFIG_INPUT_ADXL34X_I2C) |
1875 | { | 1865 | { |
1876 | I2C_BOARD_INFO("adxl34x", 0x53), | 1866 | I2C_BOARD_INFO("adxl34x", 0x53), |
1877 | .irq = IRQ_PC5, | 1867 | .irq = IRQ_PC5, |
1878 | .platform_data = (void *)&adxl34x_info, | 1868 | .platform_data = (void *)&adxl34x_info, |
1879 | }, | 1869 | }, |
1880 | #endif | 1870 | #endif |
1881 | #if defined(CONFIG_SND_SOC_ADAU1761) || defined(CONFIG_SND_SOC_ADAU1761_MODULE) | 1871 | #if IS_ENABLED(CONFIG_SND_SOC_ADAU1761) |
1882 | { | 1872 | { |
1883 | I2C_BOARD_INFO("adau1761", 0x38), | 1873 | I2C_BOARD_INFO("adau1761", 0x38), |
1884 | .platform_data = (void *)&adau1761_info | 1874 | .platform_data = (void *)&adau1761_info |
1885 | }, | 1875 | }, |
1886 | #endif | 1876 | #endif |
1887 | #if defined(CONFIG_SND_SOC_SSM2602) || defined(CONFIG_SND_SOC_SSM2602_MODULE) | 1877 | #if IS_ENABLED(CONFIG_SND_SOC_SSM2602) |
1888 | { | 1878 | { |
1889 | I2C_BOARD_INFO("ssm2602", 0x1b), | 1879 | I2C_BOARD_INFO("ssm2602", 0x1b), |
1890 | }, | 1880 | }, |
@@ -1942,11 +1932,11 @@ static struct platform_device *ezkit_devices[] __initdata = { | |||
1942 | &bfin_gpg_device, | 1932 | &bfin_gpg_device, |
1943 | #endif | 1933 | #endif |
1944 | 1934 | ||
1945 | #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE) | 1935 | #if IS_ENABLED(CONFIG_RTC_DRV_BFIN) |
1946 | &rtc_device, | 1936 | &rtc_device, |
1947 | #endif | 1937 | #endif |
1948 | 1938 | ||
1949 | #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE) | 1939 | #if IS_ENABLED(CONFIG_SERIAL_BFIN) |
1950 | #ifdef CONFIG_SERIAL_BFIN_UART0 | 1940 | #ifdef CONFIG_SERIAL_BFIN_UART0 |
1951 | &bfin_uart0_device, | 1941 | &bfin_uart0_device, |
1952 | #endif | 1942 | #endif |
@@ -1955,7 +1945,7 @@ static struct platform_device *ezkit_devices[] __initdata = { | |||
1955 | #endif | 1945 | #endif |
1956 | #endif | 1946 | #endif |
1957 | 1947 | ||
1958 | #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE) | 1948 | #if IS_ENABLED(CONFIG_BFIN_SIR) |
1959 | #ifdef CONFIG_BFIN_SIR0 | 1949 | #ifdef CONFIG_BFIN_SIR0 |
1960 | &bfin_sir0_device, | 1950 | &bfin_sir0_device, |
1961 | #endif | 1951 | #endif |
@@ -1964,19 +1954,19 @@ static struct platform_device *ezkit_devices[] __initdata = { | |||
1964 | #endif | 1954 | #endif |
1965 | #endif | 1955 | #endif |
1966 | 1956 | ||
1967 | #if defined(CONFIG_STMMAC_ETH) || defined(CONFIG_STMMAC_ETH_MODULE) | 1957 | #if IS_ENABLED(CONFIG_STMMAC_ETH) |
1968 | &bfin_eth_device, | 1958 | &bfin_eth_device, |
1969 | #endif | 1959 | #endif |
1970 | 1960 | ||
1971 | #if defined(CONFIG_USB_MUSB_HDRC) || defined(CONFIG_USB_MUSB_HDRC_MODULE) | 1961 | #if IS_ENABLED(CONFIG_USB_MUSB_HDRC) |
1972 | &musb_device, | 1962 | &musb_device, |
1973 | #endif | 1963 | #endif |
1974 | 1964 | ||
1975 | #if defined(CONFIG_USB_ISP1760_HCD) || defined(CONFIG_USB_ISP1760_HCD_MODULE) | 1965 | #if IS_ENABLED(CONFIG_USB_ISP1760_HCD) |
1976 | &bfin_isp1760_device, | 1966 | &bfin_isp1760_device, |
1977 | #endif | 1967 | #endif |
1978 | 1968 | ||
1979 | #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE) | 1969 | #if IS_ENABLED(CONFIG_SERIAL_BFIN_SPORT) |
1980 | #ifdef CONFIG_SERIAL_BFIN_SPORT0_UART | 1970 | #ifdef CONFIG_SERIAL_BFIN_SPORT0_UART |
1981 | &bfin_sport0_uart_device, | 1971 | &bfin_sport0_uart_device, |
1982 | #endif | 1972 | #endif |
@@ -1988,15 +1978,15 @@ static struct platform_device *ezkit_devices[] __initdata = { | |||
1988 | #endif | 1978 | #endif |
1989 | #endif | 1979 | #endif |
1990 | 1980 | ||
1991 | #if defined(CONFIG_CAN_BFIN) || defined(CONFIG_CAN_BFIN_MODULE) | 1981 | #if IS_ENABLED(CONFIG_CAN_BFIN) |
1992 | &bfin_can0_device, | 1982 | &bfin_can0_device, |
1993 | #endif | 1983 | #endif |
1994 | 1984 | ||
1995 | #if defined(CONFIG_MTD_NAND_BF5XX) || defined(CONFIG_MTD_NAND_BF5XX_MODULE) | 1985 | #if IS_ENABLED(CONFIG_MTD_NAND_BF5XX) |
1996 | &bfin_nand_device, | 1986 | &bfin_nand_device, |
1997 | #endif | 1987 | #endif |
1998 | 1988 | ||
1999 | #if defined(CONFIG_SDH_BFIN) || defined(CONFIG_SDH_BFIN_MODULE) | 1989 | #if IS_ENABLED(CONFIG_SDH_BFIN) |
2000 | &bfin_sdh_device, | 1990 | &bfin_sdh_device, |
2001 | #endif | 1991 | #endif |
2002 | 1992 | ||
@@ -2005,11 +1995,11 @@ static struct platform_device *ezkit_devices[] __initdata = { | |||
2005 | &bf60x_spi_master1, | 1995 | &bf60x_spi_master1, |
2006 | #endif | 1996 | #endif |
2007 | 1997 | ||
2008 | #if defined(CONFIG_INPUT_BFIN_ROTARY) || defined(CONFIG_INPUT_BFIN_ROTARY_MODULE) | 1998 | #if IS_ENABLED(CONFIG_INPUT_BFIN_ROTARY) |
2009 | &bfin_rotary_device, | 1999 | &bfin_rotary_device, |
2010 | #endif | 2000 | #endif |
2011 | 2001 | ||
2012 | #if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE) | 2002 | #if IS_ENABLED(CONFIG_I2C_BLACKFIN_TWI) |
2013 | &i2c_bfin_twi0_device, | 2003 | &i2c_bfin_twi0_device, |
2014 | #if !defined(CONFIG_BF542) | 2004 | #if !defined(CONFIG_BF542) |
2015 | &i2c_bfin_twi1_device, | 2005 | &i2c_bfin_twi1_device, |
@@ -2024,34 +2014,29 @@ static struct platform_device *ezkit_devices[] __initdata = { | |||
2024 | &bfin_crypto_crc_device, | 2014 | &bfin_crypto_crc_device, |
2025 | #endif | 2015 | #endif |
2026 | 2016 | ||
2027 | #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE) | 2017 | #if IS_ENABLED(CONFIG_KEYBOARD_GPIO) |
2028 | &bfin_device_gpiokeys, | 2018 | &bfin_device_gpiokeys, |
2029 | #endif | 2019 | #endif |
2030 | 2020 | ||
2031 | #if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE) | 2021 | #if IS_ENABLED(CONFIG_MTD_PHYSMAP) |
2032 | &ezkit_flash_device, | 2022 | &ezkit_flash_device, |
2033 | #endif | 2023 | #endif |
2034 | #if defined(CONFIG_SND_BF5XX_I2S) || defined(CONFIG_SND_BF5XX_I2S_MODULE) | 2024 | #if IS_ENABLED(CONFIG_SND_BF5XX_I2S) |
2035 | &bfin_i2s_pcm, | 2025 | &bfin_i2s_pcm, |
2036 | #endif | 2026 | #endif |
2037 | #if defined(CONFIG_SND_BF6XX_SOC_I2S) || \ | 2027 | #if IS_ENABLED(CONFIG_SND_BF6XX_SOC_I2S) |
2038 | defined(CONFIG_SND_BF6XX_SOC_I2S_MODULE) | ||
2039 | &bfin_i2s, | 2028 | &bfin_i2s, |
2040 | #endif | 2029 | #endif |
2041 | #if defined(CONFIG_SND_BF5XX_SOC_AD1836) || \ | 2030 | #if IS_ENABLED(CONFIG_SND_BF5XX_SOC_AD1836) |
2042 | defined(CONFIG_SND_BF5XX_SOC_AD1836_MODULE) | ||
2043 | &bfin_ad1836_machine, | 2031 | &bfin_ad1836_machine, |
2044 | #endif | 2032 | #endif |
2045 | #if defined(CONFIG_SND_SOC_BFIN_EVAL_ADAU1X61) || \ | 2033 | #if IS_ENABLED(CONFIG_SND_SOC_BFIN_EVAL_ADAU1X61) |
2046 | defined(CONFIG_SND_SOC_BFIN_EVAL_ADAU1X61_MODULE) | ||
2047 | &adau1761_device, | 2034 | &adau1761_device, |
2048 | #endif | 2035 | #endif |
2049 | #if defined(CONFIG_VIDEO_BLACKFIN_CAPTURE) \ | 2036 | #if IS_ENABLED(CONFIG_VIDEO_BLACKFIN_CAPTURE) |
2050 | || defined(CONFIG_VIDEO_BLACKFIN_CAPTURE_MODULE) | ||
2051 | &bfin_capture_device, | 2037 | &bfin_capture_device, |
2052 | #endif | 2038 | #endif |
2053 | #if defined(CONFIG_VIDEO_BLACKFIN_DISPLAY) \ | 2039 | #if IS_ENABLED(CONFIG_VIDEO_BLACKFIN_DISPLAY) |
2054 | || defined(CONFIG_VIDEO_BLACKFIN_DISPLAY_MODULE) | ||
2055 | &bfin_display_device, | 2040 | &bfin_display_device, |
2056 | #endif | 2041 | #endif |
2057 | 2042 | ||
@@ -2075,9 +2060,9 @@ static struct pinctrl_map __initdata bfin_pinmux_map[] = { | |||
2075 | PIN_MAP_MUX_GROUP_DEFAULT("physmap-flash.0", "pinctrl-adi2.0", NULL, "smc0"), | 2060 | PIN_MAP_MUX_GROUP_DEFAULT("physmap-flash.0", "pinctrl-adi2.0", NULL, "smc0"), |
2076 | PIN_MAP_MUX_GROUP_DEFAULT("bf609_nl8048.2", "pinctrl-adi2.0", NULL, "ppi2_16b"), | 2061 | PIN_MAP_MUX_GROUP_DEFAULT("bf609_nl8048.2", "pinctrl-adi2.0", NULL, "ppi2_16b"), |
2077 | PIN_MAP_MUX_GROUP_DEFAULT("bfin_display.0", "pinctrl-adi2.0", NULL, "ppi0_16b"), | 2062 | PIN_MAP_MUX_GROUP_DEFAULT("bfin_display.0", "pinctrl-adi2.0", NULL, "ppi0_16b"), |
2078 | #if defined(CONFIG_VIDEO_MT9M114) || defined(CONFIG_VIDEO_MT9M114_MODULE) | 2063 | #if IS_ENABLED(CONFIG_VIDEO_MT9M114) |
2079 | PIN_MAP_MUX_GROUP_DEFAULT("bfin_capture.0", "pinctrl-adi2.0", NULL, "ppi0_8b"), | 2064 | PIN_MAP_MUX_GROUP_DEFAULT("bfin_capture.0", "pinctrl-adi2.0", NULL, "ppi0_8b"), |
2080 | #elif defined(CONFIG_VIDEO_VS6624) || defined(CONFIG_VIDEO_VS6624_MODULE) | 2065 | #elif IS_ENABLED(CONFIG_VIDEO_VS6624) |
2081 | PIN_MAP_MUX_GROUP_DEFAULT("bfin_capture.0", "pinctrl-adi2.0", NULL, "ppi0_16b"), | 2066 | PIN_MAP_MUX_GROUP_DEFAULT("bfin_capture.0", "pinctrl-adi2.0", NULL, "ppi0_16b"), |
2082 | #else | 2067 | #else |
2083 | PIN_MAP_MUX_GROUP_DEFAULT("bfin_capture.0", "pinctrl-adi2.0", NULL, "ppi0_24b"), | 2068 | PIN_MAP_MUX_GROUP_DEFAULT("bfin_capture.0", "pinctrl-adi2.0", NULL, "ppi0_24b"), |