diff options
author | Josh Boyer <jwboyer@gmail.com> | 2007-05-08 03:32:10 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-08 14:15:15 -0400 |
commit | fef92c30d48a9c610e35af6b218db03f770f3c65 (patch) | |
tree | 068411c850c91f0d040e66662124a41520cf6510 /drivers/serial | |
parent | 0e82d5b61841f2b9e2d31a4299ce09752c5d3288 (diff) |
8250: Remove commented out irq cruft
Remove some obviously old interrupt disable/enable code that has been
commented out.
Signed-off-by: Josh Boyer <jwboyer@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/serial')
-rw-r--r-- | drivers/serial/8250.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/serial/8250.c b/drivers/serial/8250.c index c9832d963f1e..48e259a0167d 100644 --- a/drivers/serial/8250.c +++ b/drivers/serial/8250.c | |||
@@ -994,7 +994,6 @@ static void autoconfig(struct uart_8250_port *up, unsigned int probeflags) | |||
994 | * be frobbing the chips IRQ enable register to see if it exists. | 994 | * be frobbing the chips IRQ enable register to see if it exists. |
995 | */ | 995 | */ |
996 | spin_lock_irqsave(&up->port.lock, flags); | 996 | spin_lock_irqsave(&up->port.lock, flags); |
997 | // save_flags(flags); cli(); | ||
998 | 997 | ||
999 | up->capabilities = 0; | 998 | up->capabilities = 0; |
1000 | up->bugs = 0; | 999 | up->bugs = 0; |
@@ -1151,7 +1150,6 @@ static void autoconfig(struct uart_8250_port *up, unsigned int probeflags) | |||
1151 | 1150 | ||
1152 | out: | 1151 | out: |
1153 | spin_unlock_irqrestore(&up->port.lock, flags); | 1152 | spin_unlock_irqrestore(&up->port.lock, flags); |
1154 | // restore_flags(flags); | ||
1155 | DEBUG_AUTOCONF("type=%s\n", uart_config[up->port.type].name); | 1153 | DEBUG_AUTOCONF("type=%s\n", uart_config[up->port.type].name); |
1156 | } | 1154 | } |
1157 | 1155 | ||