leds-apu2: add compatibility for linux 4.9
Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
parent
139eb6870b
commit
185c37467e
1 changed files with 4 additions and 0 deletions
|
@ -194,7 +194,11 @@ static int gpio_apu2_probe (struct platform_device *dev)
|
|||
}
|
||||
}
|
||||
|
||||
#if LINUX_VERSION_CODE < KERNEL_VERSION(4,5,0)
|
||||
gpio_apu2_chip.dev = &dev->dev;
|
||||
#else
|
||||
gpio_apu2_chip.parent = &dev->dev;
|
||||
#endif
|
||||
ret = gpiochip_add (&gpio_apu2_chip);
|
||||
if (ret) {
|
||||
pr_err ("%s: adding gpiochip failed\n", DEVNAME);
|
||||
|
|
Loading…
Reference in a new issue