PNP: convert the last few pnp_info() uses to printk()
There are only a few remaining uses of pnp_info(), so I just converted them to printk and removed the pnp_err(), pnp_info(), pnp_warn(), and pnp_dbg() wrappers. I also removed a couple debug messages that don't seem useful any more ("driver registered", "driver unregistered", "driver attached"). Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Signed-off-by: Andi Kleen <ak@linux.intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
@@ -114,7 +114,6 @@ static int pnp_device_probe(struct device *dev)
|
||||
} else
|
||||
goto fail;
|
||||
|
||||
dev_dbg(dev, "driver attached\n");
|
||||
return error;
|
||||
|
||||
fail:
|
||||
@@ -210,8 +209,6 @@ struct bus_type pnp_bus_type = {
|
||||
|
||||
int pnp_register_driver(struct pnp_driver *drv)
|
||||
{
|
||||
pnp_dbg("the driver '%s' has been registered", drv->name);
|
||||
|
||||
drv->driver.name = drv->name;
|
||||
drv->driver.bus = &pnp_bus_type;
|
||||
|
||||
@@ -221,7 +218,6 @@ int pnp_register_driver(struct pnp_driver *drv)
|
||||
void pnp_unregister_driver(struct pnp_driver *drv)
|
||||
{
|
||||
driver_unregister(&drv->driver);
|
||||
pnp_dbg("the driver '%s' has been unregistered", drv->name);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user