From: Julien D'Ascenzio Date: Wed, 25 Jun 2014 20:00:31 +0000 (+0200) Subject: hwmon: (gpio-fan) Change name used in hwmon_device_register_with_groups X-Git-Tag: v4.9.8~6182^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d26e0da783adbb94977f60dec9a035b427813b83;p=platform%2Fkernel%2Flinux-rpi3.git hwmon: (gpio-fan) Change name used in hwmon_device_register_with_groups Since commit 648cd48c9e566f53c5df30d79857e0937ae13b09 The hwmon name attributes must not include '-' so the name must be rename from gpio-fan to gpio_fan Signed-off-by: Julien D'Ascenzio Reviewed-by: Jean Delvare Signed-off-by: Guenter Roeck --- diff --git a/drivers/hwmon/gpio-fan.c b/drivers/hwmon/gpio-fan.c index ba35e4d..2566c43 100644 --- a/drivers/hwmon/gpio-fan.c +++ b/drivers/hwmon/gpio-fan.c @@ -538,7 +538,7 @@ static int gpio_fan_probe(struct platform_device *pdev) /* Make this driver part of hwmon class. */ fan_data->hwmon_dev = hwmon_device_register_with_groups(&pdev->dev, - "gpio-fan", fan_data, + "gpio_fan", fan_data, gpio_fan_groups); if (IS_ERR(fan_data->hwmon_dev)) return PTR_ERR(fan_data->hwmon_dev);