diff options
author | Manuel Zerpies <manuel.f.zerpies@ww.stud.uni-erlangen.de> | 2011-06-16 08:12:47 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-07-01 17:43:25 -0400 |
commit | bf929b3bee635bea5c91f1c1d7985a9fcdfdb069 (patch) | |
tree | be909e19c60211c2fb657e010cba62045a7def14 /drivers/usb/atm | |
parent | 9708cd2f84fade7f7c771712efa38b5f56d3c115 (diff) |
drivers/usb/atm: use printk_ratelimited() instead of printk_ratelimit()
Since printk_ratelimit() shouldn't be used anymore (see comment in
include/linux/printk.h), replace it with printk_ratelimited()
Signed-off-by: Manuel Zerpies <manuel.f.zerpies@ww.stud.uni-erlangen.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/atm')
-rw-r--r-- | drivers/usb/atm/usbatm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/atm/usbatm.c b/drivers/usb/atm/usbatm.c index 989e16e4ab5c..d3448ca110ce 100644 --- a/drivers/usb/atm/usbatm.c +++ b/drivers/usb/atm/usbatm.c | |||
@@ -81,6 +81,7 @@ | |||
81 | #include <linux/timer.h> | 81 | #include <linux/timer.h> |
82 | #include <linux/wait.h> | 82 | #include <linux/wait.h> |
83 | #include <linux/kthread.h> | 83 | #include <linux/kthread.h> |
84 | #include <linux/ratelimit.h> | ||
84 | 85 | ||
85 | #ifdef VERBOSE_DEBUG | 86 | #ifdef VERBOSE_DEBUG |
86 | static int usbatm_print_packet(const unsigned char *data, int len); | 87 | static int usbatm_print_packet(const unsigned char *data, int len); |
@@ -668,8 +669,7 @@ static int usbatm_atm_send(struct atm_vcc *vcc, struct sk_buff *skb) | |||
668 | /* racy disconnection check - fine */ | 669 | /* racy disconnection check - fine */ |
669 | if (!instance || instance->disconnected) { | 670 | if (!instance || instance->disconnected) { |
670 | #ifdef DEBUG | 671 | #ifdef DEBUG |
671 | if (printk_ratelimit()) | 672 | printk_ratelimited(KERN_DEBUG "%s: %s!\n", __func__, instance ? "disconnected" : "NULL instance"); |
672 | printk(KERN_DEBUG "%s: %s!\n", __func__, instance ? "disconnected" : "NULL instance"); | ||
673 | #endif | 673 | #endif |
674 | err = -ENODEV; | 674 | err = -ENODEV; |
675 | goto fail; | 675 | goto fail; |