Commit f57ecc17 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

[PATCH] i2c: piix4 driver: turn common error message to a debug level and...

[PATCH] i2c: piix4 driver: turn common error message to a debug level and rename the sysfs driver name.
parent f4e0fb85
...@@ -269,7 +269,7 @@ static int piix4_transaction(void) ...@@ -269,7 +269,7 @@ static int piix4_transaction(void)
if (temp & 0x04) { if (temp & 0x04) {
result = -1; result = -1;
dev_err(&piix4_adapter.dev, "Error: no response!\n"); dev_dbg(&piix4_adapter.dev, "Error: no response!\n");
} }
if (inb_p(SMBHSTSTS) != 0x00) if (inb_p(SMBHSTSTS) != 0x00)
...@@ -467,7 +467,7 @@ static void __devexit piix4_remove(struct pci_dev *dev) ...@@ -467,7 +467,7 @@ static void __devexit piix4_remove(struct pci_dev *dev)
static struct pci_driver piix4_driver = { static struct pci_driver piix4_driver = {
.name = "piix4 smbus", .name = "piix4-smbus",
.id_table = piix4_ids, .id_table = piix4_ids,
.probe = piix4_probe, .probe = piix4_probe,
.remove = __devexit_p(piix4_remove), .remove = __devexit_p(piix4_remove),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment