diff options
Diffstat (limited to 'drivers/pwm/sysfs.c')
| -rw-r--r-- | drivers/pwm/sysfs.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pwm/sysfs.c b/drivers/pwm/sysfs.c index 1698609d91c8..3f434a771fb5 100644 --- a/drivers/pwm/sysfs.c +++ b/drivers/pwm/sysfs.c @@ -509,10 +509,10 @@ void pwmchip_sysfs_export(struct pwm_chip *chip)  	 * If device_create() fails the pwm_chip is still usable by  	 * the kernel it's just not exported.  	 */ -	parent = device_create(&pwm_class, chip->dev, MKDEV(0, 0), chip, +	parent = device_create(&pwm_class, pwmchip_parent(chip), MKDEV(0, 0), chip,  			       "pwmchip%d", chip->id);  	if (IS_ERR(parent)) { -		dev_warn(chip->dev, +		dev_warn(pwmchip_parent(chip),  			 "device_create failed for pwm_chip sysfs export\n");  	}  }  | 
