]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
TTY: simserial, remove tmp_buf
authorJiri Slaby <jslaby@suse.cz>
Mon, 5 Mar 2012 13:52:29 +0000 (14:52 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 8 Mar 2012 20:48:26 +0000 (12:48 -0800)
It is totally unused.

Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Cc: Tony Luck <tony.luck@intel.com>
Cc: Fenghua Yu <fenghua.yu@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
arch/ia64/hp/sim/simserial.c

index 64ab004b47634a68ef64780721364ce31725ad5b..45df0f427864ca9998f347a6c3f6eac2e0953acf 100644 (file)
@@ -55,8 +55,6 @@ struct tty_driver *hp_simserial_driver;
 
 static struct console *console;
 
-static unsigned char *tmp_buf;
-
 extern struct console *console_drivers; /* from kernel/printk.c */
 
 /*
@@ -237,7 +235,8 @@ static int rs_write(struct tty_struct * tty,
        int     c, ret = 0;
        unsigned long flags;
 
-       if (!tty || !info->xmit.buf || !tmp_buf) return 0;
+       if (!tty || !info->xmit.buf)
+               return 0;
 
        local_irq_save(flags);
        while (1) {
@@ -618,7 +617,6 @@ static int rs_open(struct tty_struct *tty, struct file * filp)
 {
        struct serial_state *info = rs_table + tty->index;
        int                     retval;
-       unsigned long           page;
 
        info->tport.count++;
        info->tport.tty = tty;
@@ -630,16 +628,6 @@ static int rs_open(struct tty_struct *tty, struct file * filp)
 #endif
        tty->low_latency = (info->tport.flags & ASYNC_LOW_LATENCY) ? 1 : 0;
 
-       if (!tmp_buf) {
-               page = get_zeroed_page(GFP_KERNEL);
-               if (!page)
-                       return -ENOMEM;
-               if (tmp_buf)
-                       free_page(page);
-               else
-                       tmp_buf = (unsigned char *) page;
-       }
-
        /*
         * If the port is the middle of closing, bail out now
         */