On Tue, 2008-03-25 at 02:10 +0800, Julia Lawall wrote:Patch looks correct. Thanks, Julia. But it misses the same problem in driver/misc/intel_menlow.c. And the return value of thermal_zone_device_register is also misused. How about this refreshed patch? :) Check the return value of thermal zone/cooling device registration correctly. Signed-off-by: Zhang Rui <rui.zhang@intel.com> --- drivers/acpi/fan.c | 3 +-- drivers/acpi/processor_core.c | 3 +-- drivers/acpi/thermal.c | 2 +- drivers/acpi/video.c | 3 +-- drivers/misc/intel_menlow.c | 4 +--- 5 files changed, 5 insertions(+), 10 deletions(-) Index: linux-2.6/drivers/acpi/fan.c =================================================================== --- linux-2.6.orig/drivers/acpi/fan.c +++ linux-2.6/drivers/acpi/fan.c @@ -259,8 +259,7 @@ static int acpi_fan_add(struct acpi_devi if (IS_ERR(cdev)) { result = PTR_ERR(cdev); goto end; - } - if (cdev) { + } else { printk(KERN_INFO PREFIX "%s is registered as cooling_device%d\n", device->dev.bus_id, cdev->id); Index: linux-2.6/drivers/acpi/processor_core.c =================================================================== --- linux-2.6.orig/drivers/acpi/processor_core.c +++ linux-2.6/drivers/acpi/processor_core.c @@ -673,8 +673,7 @@ static int __cpuinit acpi_processor_star if (IS_ERR(pr->cdev)) { result = PTR_ERR(pr->cdev); goto end; - } - if (pr->cdev) { + } else { printk(KERN_INFO PREFIX "%s is registered as cooling_device%d\n", device->dev.bus_id, pr->cdev->id); Index: linux-2.6/drivers/acpi/thermal.c =================================================================== --- linux-2.6.orig/drivers/acpi/thermal.c +++ linux-2.6/drivers/acpi/thermal.c @@ -1125,7 +1125,7 @@ static int acpi_thermal_register_thermal tz->trips.active[i].flags.valid; i++, trips++); tz->thermal_zone = thermal_zone_device_register("ACPI thermal zone", trips, tz, &acpi_thermal_zone_ops); - if (!tz->thermal_zone) + if (IS_ERR(tz->thermal_zone)) return -ENODEV; result = sysfs_create_link(&tz->device->dev.kobj, Index: linux-2.6/drivers/acpi/video.c =================================================================== --- linux-2.6.orig/drivers/acpi/video.c +++ linux-2.6/drivers/acpi/video.c @@ -733,8 +733,7 @@ static void acpi_video_device_find_cap(s device->dev, &video_cooling_ops); if (IS_ERR(device->cdev)) return; - - if (device->cdev) { + else { printk(KERN_INFO PREFIX "%s is registered as cooling_device%d\n", device->dev->dev.bus_id, device->cdev->id); Index: linux-2.6/drivers/misc/intel_menlow.c =================================================================== --- linux-2.6.orig/drivers/misc/intel_menlow.c +++ linux-2.6/drivers/misc/intel_menlow.c @@ -173,9 +173,7 @@ static int intel_menlow_memory_add(struc if (IS_ERR(cdev)) { result = PTR_ERR(cdev); goto end; - } - - if (cdev) { + } else { acpi_driver_data(device) = cdev; result = sysfs_create_link(&device->dev.kobj, &cdev->device.kobj, "thermal_cooling"); --
| FUJITA Tomonori | Re: Linux 2.6.25-rc4 |
| Greg KH | [GIT PATCH] driver core patches against 2.6.24 |
| Jan Engelhardt | intel iommu (Re: -mm merge plans for 2.6.23) |
| Artem Bityutskiy | [PATCH 11/44 take 2] [UBI] allocation unit header |
git: | |
| David Miller | [GIT]: Networking |
| Gerrit Renker | [PATCH 27/37] dccp: Integration of dynamic feature activation - part 2 (server side) |
| David Miller | Re: [PATCH] pkt_sched: Destroy gen estimators under rtnl_lock(). |
| Natalie Protasevich | [BUG] New Kernel Bugs |
