diff options
Diffstat (limited to 'src/superio/smsc/sch5545/superio.c')
-rw-r--r-- | src/superio/smsc/sch5545/superio.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/superio/smsc/sch5545/superio.c b/src/superio/smsc/sch5545/superio.c index 8165fe06bd..1ce1fd61aa 100644 --- a/src/superio/smsc/sch5545/superio.c +++ b/src/superio/smsc/sch5545/superio.c @@ -90,7 +90,7 @@ static void sch5545_set_iobase(struct device *dev, u8 index, u16 iobase) lpc_if = dev_find_slot_pnp(dev->path.pnp.port, SCH5545_LDN_LPC); if (!lpc_if) { - printk(BIOS_ERR, "ERROR: %s LPC interface LDN not present." + printk(BIOS_ERR, "%s LPC interface LDN not present." "Check the devicetree!\n", dev_path(dev)); return; } @@ -152,7 +152,7 @@ static void sch5545_set_irq(struct device *dev, u8 index, u8 irq) lpc_if = dev_find_slot_pnp(dev->path.pnp.port, SCH5545_LDN_LPC); if (!lpc_if) { - printk(BIOS_ERR, "ERROR: %s LPC interface LDN not present." + printk(BIOS_ERR, "%s LPC interface LDN not present." "Check the devicetree!\n", dev_path(dev)); return; } @@ -193,7 +193,7 @@ static void sch5545_set_drq(struct device *dev, u8 index, u8 drq) struct device *lpc_if; if (drq == 4) { - printk(BIOS_ERR, "ERROR: %s %02x: Trying to set reserved DMA channel 4!\n", + printk(BIOS_ERR, "%s %02x: Trying to set reserved DMA channel 4!\n", dev_path(dev), index); printk(BIOS_ERR, "This configuration is untested. Trying to continue.\n"); } @@ -202,7 +202,7 @@ static void sch5545_set_drq(struct device *dev, u8 index, u8 drq) lpc_if = dev_find_slot_pnp(dev->path.pnp.port, SCH5545_LDN_LPC); if (!lpc_if) { - printk(BIOS_ERR, "ERROR: %s LPC interface LDN not present." + printk(BIOS_ERR, "%s LPC interface LDN not present." "Check the devicetree!\n", dev_path(dev)); return; } @@ -233,12 +233,12 @@ static void sch5545_set_resource(struct device *dev, struct resource *resource) if (resource->flags & IORESOURCE_IRQ && (resource->index != PNP_IDX_IRQ0) && (resource->index != PNP_IDX_IRQ1)) - printk(BIOS_WARNING, "WARNING: %s %02lx %s size: " + printk(BIOS_WARNING, "%s %02lx %s size: " "0x%010llx not assigned\n", dev_path(dev), resource->index, resource_type(resource), resource->size); else - printk(BIOS_ERR, "ERROR: %s %02lx %s size: 0x%010llx " + printk(BIOS_ERR, "%s %02lx %s size: 0x%010llx " "not assigned\n", dev_path(dev), resource->index, resource_type(resource), resource->size); return; @@ -252,7 +252,7 @@ static void sch5545_set_resource(struct device *dev, struct resource *resource) } else if (resource->flags & IORESOURCE_IRQ) { sch5545_set_irq(dev, resource->index, resource->base); } else { - printk(BIOS_ERR, "ERROR: %s %02lx unknown resource type\n", + printk(BIOS_ERR, "%s %02lx unknown resource type\n", dev_path(dev), resource->index); return; } |