diff options
author | Koen Vandeputte <koen.vandeputte@ncentric.com> | 2017-02-06 12:11:39 +0100 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2017-02-07 11:39:08 +0100 |
commit | 597ea080386c736673e19fbf5dc825807e851573 (patch) | |
tree | 5ebd89aac779f97ebb37433c78680e4119040f2d /target/linux/cns3xxx | |
parent | 2a4d2e451950fa6724c59de92ef9c62af5a50e1e (diff) | |
download | upstream-597ea080386c736673e19fbf5dc825807e851573.tar.gz upstream-597ea080386c736673e19fbf5dc825807e851573.tar.bz2 upstream-597ea080386c736673e19fbf5dc825807e851573.zip |
cns3xxx: use proper macro's for ID handling
Compiled & tested on cns3xxx
Signed-off-by: Koen Vandeputte <koen.vandeputte@ncentric.com>
Diffstat (limited to 'target/linux/cns3xxx')
-rw-r--r-- | target/linux/cns3xxx/files/arch/arm/mach-cns3xxx/laguna.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target/linux/cns3xxx/files/arch/arm/mach-cns3xxx/laguna.c b/target/linux/cns3xxx/files/arch/arm/mach-cns3xxx/laguna.c index 4a596125ab..4584d54caf 100644 --- a/target/linux/cns3xxx/files/arch/arm/mach-cns3xxx/laguna.c +++ b/target/linux/cns3xxx/files/arch/arm/mach-cns3xxx/laguna.c @@ -297,7 +297,7 @@ static struct gpio_led_platform_data laguna_gpio_leds_data = { static struct platform_device laguna_gpio_leds_device = { .name = "leds-gpio", - .id = -1, + .id = PLATFORM_DEVID_NONE, .dev.platform_data = &laguna_gpio_leds_data, }; @@ -641,7 +641,7 @@ static struct resource laguna_watchdog_resources[] = { static struct platform_device laguna_watchdog = { .name = "mpcore_wdt", - .id = -1, + .id = PLATFORM_DEVID_NONE, .num_resources = ARRAY_SIZE(laguna_watchdog_resources), .resource = laguna_watchdog_resources, }; @@ -658,7 +658,7 @@ static struct pps_gpio_platform_data laguna_pps_data = { static struct platform_device laguna_pps_device = { .name = "pps-gpio", - .id = -1, + .id = PLATFORM_DEVID_NONE, .dev.platform_data = &laguna_pps_data, }; |