aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/tty/mxser.c
diff options
context:
space:
mode:
authorManuel Zerpies <manuel.f.zerpies@ww.stud.uni-erlangen.de>2011-06-16 08:07:22 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2011-07-01 18:35:45 -0400
commit5a3c6b251d587715f8b87a50216e4c085c655777 (patch)
treefa1d3379b02b0bb243c367d30f84321dd1dc486d /drivers/tty/mxser.c
parent6ab8fba7fcb012a42d686abd33555b2215071415 (diff)
drivers/tty: use printk_ratelimited() instead of printk_ratelimit()
Since the 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/tty/mxser.c')
-rw-r--r--drivers/tty/mxser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/tty/mxser.c b/drivers/tty/mxser.c
index d188f378684d..7fc8c02fea6c 100644
--- a/drivers/tty/mxser.c
+++ b/drivers/tty/mxser.c
@@ -39,6 +39,7 @@
39#include <linux/pci.h> 39#include <linux/pci.h>
40#include <linux/bitops.h> 40#include <linux/bitops.h>
41#include <linux/slab.h> 41#include <linux/slab.h>
42#include <linux/ratelimit.h>
42 43
43#include <asm/system.h> 44#include <asm/system.h>
44#include <asm/io.h> 45#include <asm/io.h>
@@ -1490,8 +1491,7 @@ static int mxser_ioctl_special(unsigned int cmd, void __user *argp)
1490 1491
1491 switch (cmd) { 1492 switch (cmd) {
1492 case MOXA_GET_MAJOR: 1493 case MOXA_GET_MAJOR:
1493 if (printk_ratelimit()) 1494 printk_ratelimited(KERN_WARNING "mxser: '%s' uses deprecated ioctl "
1494 printk(KERN_WARNING "mxser: '%s' uses deprecated ioctl "
1495 "%x (GET_MAJOR), fix your userspace\n", 1495 "%x (GET_MAJOR), fix your userspace\n",
1496 current->comm, cmd); 1496 current->comm, cmd);
1497 return put_user(ttymajor, (int __user *)argp); 1497 return put_user(ttymajor, (int __user *)argp);