mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
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:
parent
958a1fdd39
commit
c865d2f6eb
3 changed files with 3 additions and 17 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue