serial: altera_uart: call iounmap() at driver remove

The driver calls ioremap() in the probe function but doesn't call
iounmap() in the remove function correspondingly. Do so now.

Follow commit 5c9d6abed9e0 ("serial: altera_jtaguart: adding iounmap()")

Cc: Alexey Khoroshilov <khoroshilov@ispras.ru>
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by Tobias Klauser and committed by Greg Kroah-Hartman 59fe2cc8 6df765dc

Changed files
+1
drivers
tty
serial
+1
drivers/tty/serial/altera_uart.c
··· 615 615 if (port) { 616 616 uart_remove_one_port(&altera_uart_driver, port); 617 617 port->mapbase = 0; 618 + iounmap(port->membase); 618 619 } 619 620 620 621 return 0;