diff options
| author | Alexander Shiyan <shc_work@mail.ru> | 2016-06-04 10:10:00 +0300 | 
|---|---|---|
| committer | Linus Walleij <linus.walleij@linaro.org> | 2016-06-08 10:48:17 +0200 | 
| commit | 2e607fca7a2f842c73cf0c12ea4cf4776bdf7e46 (patch) | |
| tree | f22f4637186d80a7fa025bc26ba2e1c4e4bf1c14 /drivers/gpio/gpio-syscon.c | |
| parent | 1a4d458bdf4694e014d54499348d101ffdb4cab5 (diff) | |
gpio: syscon: Change the compatibility string
This patch changes the compatibility string to match with the smallest
supported chip (EP7209). Since the DT-support for this CPU is not yet
announced, this change is safe.
Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/gpio-syscon.c')
| -rw-r--r-- | drivers/gpio/gpio-syscon.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpio/gpio-syscon.c b/drivers/gpio/gpio-syscon.c index 24b6d643ecdb..537cec7583fc 100644 --- a/drivers/gpio/gpio-syscon.c +++ b/drivers/gpio/gpio-syscon.c @@ -129,7 +129,7 @@ static int syscon_gpio_dir_out(struct gpio_chip *chip, unsigned offset, int val)  static const struct syscon_gpio_data clps711x_mctrl_gpio = {  	/* ARM CLPS711X SYSFLG1 Bits 8-10 */ -	.compatible	= "cirrus,clps711x-syscon1", +	.compatible	= "cirrus,ep7209-syscon1",  	.flags		= GPIO_SYSCON_FEAT_IN,  	.bit_count	= 3,  	.dat_bit_offset	= 0x40 * 8 + 8, @@ -168,7 +168,7 @@ static const struct syscon_gpio_data keystone_dsp_gpio = {  static const struct of_device_id syscon_gpio_ids[] = {  	{ -		.compatible	= "cirrus,clps711x-mctrl-gpio", +		.compatible	= "cirrus,ep7209-mctrl-gpio",  		.data		= &clps711x_mctrl_gpio,  	},  	{  | 
