diff options
-rw-r--r-- | drivers/serial/s3c2410.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/serial/s3c2410.c b/drivers/serial/s3c2410.c index 2a9f7ade2c9d..5c4678478b1d 100644 --- a/drivers/serial/s3c2410.c +++ b/drivers/serial/s3c2410.c | |||
@@ -198,7 +198,7 @@ static inline struct s3c24xx_uart_port *to_ourport(struct uart_port *port) | |||
198 | 198 | ||
199 | /* translate a port to the device name */ | 199 | /* translate a port to the device name */ |
200 | 200 | ||
201 | static inline char *s3c24xx_serial_portname(struct uart_port *port) | 201 | static inline const char *s3c24xx_serial_portname(struct uart_port *port) |
202 | { | 202 | { |
203 | return to_platform_device(port->dev)->name; | 203 | return to_platform_device(port->dev)->name; |
204 | } | 204 | } |
@@ -903,7 +903,7 @@ static void s3c24xx_serial_release_port(struct uart_port *port) | |||
903 | 903 | ||
904 | static int s3c24xx_serial_request_port(struct uart_port *port) | 904 | static int s3c24xx_serial_request_port(struct uart_port *port) |
905 | { | 905 | { |
906 | char *name = s3c24xx_serial_portname(port); | 906 | const char *name = s3c24xx_serial_portname(port); |
907 | return request_mem_region(port->mapbase, MAP_SIZE, name) ? 0 : -EBUSY; | 907 | return request_mem_region(port->mapbase, MAP_SIZE, name) ? 0 : -EBUSY; |
908 | } | 908 | } |
909 | 909 | ||