diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2008-08-18 16:21:04 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-10-17 17:41:10 -0400 |
commit | b887265c165f94917d0f565b1883a6e7b3c8388c (patch) | |
tree | b1c3d3cbc02c5bf191510d37b0a480a3af70286e | |
parent | 899ef6e7cf2f057fcfd8071b36de04117313242b (diff) |
USB: remove info() macro from usb mtd drivers
USB should not be having it's own printk macros, so remove info() and
use the system-wide standard of dev_info() wherever possible.
Acked-by: David Woodhouse <dwmw2@infradead.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/mtd/nand/alauda.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/nand/alauda.c b/drivers/mtd/nand/alauda.c index 257937cd99bf..962380394855 100644 --- a/drivers/mtd/nand/alauda.c +++ b/drivers/mtd/nand/alauda.c | |||
@@ -691,7 +691,7 @@ static int alauda_probe(struct usb_interface *interface, | |||
691 | al[0].port = ALAUDA_PORT_XD; | 691 | al[0].port = ALAUDA_PORT_XD; |
692 | al[1].port = ALAUDA_PORT_SM; | 692 | al[1].port = ALAUDA_PORT_SM; |
693 | 693 | ||
694 | info("alauda probed"); | 694 | dev_info(&interface->dev, "alauda probed\n"); |
695 | alauda_check_media(al); | 695 | alauda_check_media(al); |
696 | alauda_check_media(al+1); | 696 | alauda_check_media(al+1); |
697 | 697 | ||
@@ -716,7 +716,7 @@ static void alauda_disconnect(struct usb_interface *interface) | |||
716 | if (al) | 716 | if (al) |
717 | kref_put(&al->kref, alauda_delete); | 717 | kref_put(&al->kref, alauda_delete); |
718 | 718 | ||
719 | info("alauda gone"); | 719 | dev_info(&interface->dev, "alauda gone"); |
720 | } | 720 | } |
721 | 721 | ||
722 | static struct usb_driver alauda_driver = { | 722 | static struct usb_driver alauda_driver = { |