diff options
| author | Paul Bolle <pebolle@tiscali.nl> | 2013-04-04 13:02:10 +0200 | 
|---|---|---|
| committer | Steven Miao <realmz6@gmail.com> | 2014-04-12 08:47:57 +0800 | 
| commit | 6ffe34638e54d792e3d58633008891c2f3619d64 (patch) | |
| tree | 653614e3cc7e8c3a7b233a3a4973b7173fe497c5 | |
| parent | cb8f05f74f7e8dda92095e2f9d400f799a8d1846 (diff) | |
Blackfin: bf537: rename ad2s120x ->ad2s1200
In v3.2 the Analog Devices ad2s1200/ad2s1205 driver was renamed from
ad2s120x to ad2s1200. But it apparently forgot to rename the references
to this driver in the BF537-STAMP code. Rename these now, and use the
IS_ENABLED() macro, while we're at it.
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
| -rw-r--r-- | arch/blackfin/mach-bf537/boards/stamp.c | 14 | 
1 files changed, 7 insertions, 7 deletions
diff --git a/arch/blackfin/mach-bf537/boards/stamp.c b/arch/blackfin/mach-bf537/boards/stamp.c index 50c2b0a52475..60ce59891495 100644 --- a/arch/blackfin/mach-bf537/boards/stamp.c +++ b/arch/blackfin/mach-bf537/boards/stamp.c @@ -655,13 +655,13 @@ static struct bfin5xx_spi_chip ad2s90_spi_chip_info = {  };  #endif -#if defined(CONFIG_AD2S120X) || defined(CONFIG_AD2S120X_MODULE) -static unsigned short ad2s120x_platform_data[] = { +#if IS_ENABLED(CONFIG_AD2S1200) +static unsigned short ad2s1200_platform_data[] = {  	/* used as SAMPLE and RDVEL */  	GPIO_PF5, GPIO_PF6, 0  }; -static struct bfin5xx_spi_chip ad2s120x_spi_chip_info = { +static struct bfin5xx_spi_chip ad2s1200_spi_chip_info = {  	.enable_dma = 0,  };  #endif @@ -1019,13 +1019,13 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = {  	},  #endif -#if defined(CONFIG_AD2S120X) || defined(CONFIG_AD2S120X_MODULE) +#if IS_ENABLED(CONFIG_AD2S1200)  	{ -		.modalias = "ad2s120x", +		.modalias = "ad2s1200",  		.bus_num = 0,  		.chip_select = 4,            /* CS, change it for your board */ -		.platform_data = ad2s120x_platform_data, -		.controller_data = &ad2s120x_spi_chip_info, +		.platform_data = ad2s1200_platform_data, +		.controller_data = &ad2s1200_spi_chip_info,  	},  #endif  | 
