From: Lucas Stach Date: Thu, 6 Jan 2011 19:29:53 +0000 (+0100) Subject: drm/nouveau: fix hwmon device binding X-Git-Tag: v2.6.38-rc1~24^2~4^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=07cfe0e7a820ecad078c04e9c2a102521709145d;p=platform%2Fkernel%2Flinux-exynos.git drm/nouveau: fix hwmon device binding Bind the hwmon structs to nouveau device kobj. This makes sure the hwmon files are created in the device subdir in line with all other hwmon drivers. Signed-off-by: Lucas Stach Signed-off-by: Ben Skeggs --- diff --git a/drivers/gpu/drm/nouveau/nouveau_pm.c b/drivers/gpu/drm/nouveau/nouveau_pm.c index d938141..fb846a3 100644 --- a/drivers/gpu/drm/nouveau/nouveau_pm.c +++ b/drivers/gpu/drm/nouveau/nouveau_pm.c @@ -422,8 +422,7 @@ nouveau_hwmon_init(struct drm_device *dev) return ret; } dev_set_drvdata(hwmon_dev, dev); - ret = sysfs_create_group(&hwmon_dev->kobj, - &hwmon_attrgroup); + ret = sysfs_create_group(&dev->pdev->dev.kobj, &hwmon_attrgroup); if (ret) { NV_ERROR(dev, "Unable to create hwmon sysfs file: %d\n", ret);