|
|
@@ -55,7 +55,7 @@ static int soc_button_lookup_gpio(struct device *dev, int acpi_index)
|
|
|
struct gpio_desc *desc;
|
|
|
int gpio;
|
|
|
|
|
|
- desc = gpiod_get_index(dev, KBUILD_MODNAME, acpi_index, GPIOD_ASIS);
|
|
|
+ desc = gpiod_get_index(dev, NULL, acpi_index, GPIOD_ASIS);
|
|
|
if (IS_ERR(desc))
|
|
|
return PTR_ERR(desc);
|
|
|
|
|
|
@@ -169,7 +169,7 @@ static int soc_button_probe(struct platform_device *pdev)
|
|
|
|
|
|
button_info = (struct soc_button_info *)id->driver_data;
|
|
|
|
|
|
- if (gpiod_count(dev, KBUILD_MODNAME) <= 0) {
|
|
|
+ if (gpiod_count(dev, NULL) <= 0) {
|
|
|
dev_dbg(dev, "no GPIO attached, ignoring...\n");
|
|
|
return -ENODEV;
|
|
|
}
|