diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-02-09 11:38:25 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-09 12:14:06 -0500 |
commit | b81831c69afb82c0545d3de729290fab4e50d429 (patch) | |
tree | 8b24dc6da9b8c799912d757cb77611a97b99b105 /drivers/serial/uartlite.c | |
parent | f2e97df669d32f74152336f46e4e0e328b993c57 (diff) |
[PATCH] drivers/serial NULL noise removal
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/serial/uartlite.c')
-rw-r--r-- | drivers/serial/uartlite.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/serial/uartlite.c b/drivers/serial/uartlite.c index db8607e3d531..f5051cf1a0c8 100644 --- a/drivers/serial/uartlite.c +++ b/drivers/serial/uartlite.c | |||
@@ -256,7 +256,7 @@ static void ulite_release_port(struct uart_port *port) | |||
256 | { | 256 | { |
257 | release_mem_region(port->mapbase, ULITE_REGION); | 257 | release_mem_region(port->mapbase, ULITE_REGION); |
258 | iounmap(port->membase); | 258 | iounmap(port->membase); |
259 | port->membase = 0; | 259 | port->membase = NULL; |
260 | } | 260 | } |
261 | 261 | ||
262 | static int ulite_request_port(struct uart_port *port) | 262 | static int ulite_request_port(struct uart_port *port) |
@@ -438,7 +438,7 @@ static int __devinit ulite_probe(struct platform_device *pdev) | |||
438 | port->iotype = UPIO_MEM; | 438 | port->iotype = UPIO_MEM; |
439 | port->iobase = 1; /* mark port in use */ | 439 | port->iobase = 1; /* mark port in use */ |
440 | port->mapbase = res->start; | 440 | port->mapbase = res->start; |
441 | port->membase = 0; | 441 | port->membase = NULL; |
442 | port->ops = &ulite_ops; | 442 | port->ops = &ulite_ops; |
443 | port->irq = res2->start; | 443 | port->irq = res2->start; |
444 | port->flags = UPF_BOOT_AUTOCONF; | 444 | port->flags = UPF_BOOT_AUTOCONF; |
@@ -462,7 +462,7 @@ static int ulite_remove(struct platform_device *pdev) | |||
462 | uart_remove_one_port(&ulite_uart_driver, port); | 462 | uart_remove_one_port(&ulite_uart_driver, port); |
463 | 463 | ||
464 | /* mark port as free */ | 464 | /* mark port as free */ |
465 | port->membase = 0; | 465 | port->membase = NULL; |
466 | 466 | ||
467 | return 0; | 467 | return 0; |
468 | } | 468 | } |