Skip to content

Commit

Permalink
ACPI: Remove repeated registered as cooling_device messages
Browse files Browse the repository at this point in the history
This message shows up for each cpu.  Print as debug messages.

[   12.893967] processor ACPI0007:00: registered as cooling_device0
[   12.907838] processor ACPI0007:01: registered as cooling_device1

Signed-off-by: Mike Travis <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: [email protected]
Cc: [email protected]
Signed-off-by: Len Brown <[email protected]>
  • Loading branch information
Mike Travis authored and lenb committed Dec 16, 2009
1 parent 876fba4 commit 13c4115
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion drivers/acpi/fan.c
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ static int acpi_fan_add(struct acpi_device *device)
goto end;
}

dev_info(&device->dev, "registered as cooling_device%d\n", cdev->id);
dev_dbg(&device->dev, "registered as cooling_device%d\n", cdev->id);

device->driver_data = cdev;
result = sysfs_create_link(&device->dev.kobj,
Expand Down
2 changes: 1 addition & 1 deletion drivers/acpi/processor_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,7 @@ static int __cpuinit acpi_processor_add(struct acpi_device *device)
goto err_power_exit;
}

dev_info(&device->dev, "registered as cooling_device%d\n",
dev_dbg(&device->dev, "registered as cooling_device%d\n",
pr->cdev->id);

result = sysfs_create_link(&device->dev.kobj,
Expand Down

0 comments on commit 13c4115

Please sign in to comment.