mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-07 15:01:44 +00:00
serial: core: Make uart_parse_options take const char* argument
The pointed string is never modified from within uart_parse_options, so it should be marked as const in the function prototype. Signed-off-by: Paul Cercueil <paul@crapouillou.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b9820a3169
commit
0f646b63a1
2 changed files with 4 additions and 3 deletions
|
@ -1955,9 +1955,10 @@ EXPORT_SYMBOL_GPL(uart_parse_earlycon);
|
||||||
* eg: 115200n8r
|
* eg: 115200n8r
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
uart_parse_options(char *options, int *baud, int *parity, int *bits, int *flow)
|
uart_parse_options(const char *options, int *baud, int *parity,
|
||||||
|
int *bits, int *flow)
|
||||||
{
|
{
|
||||||
char *s = options;
|
const char *s = options;
|
||||||
|
|
||||||
*baud = simple_strtoul(s, NULL, 10);
|
*baud = simple_strtoul(s, NULL, 10);
|
||||||
while (*s >= '0' && *s <= '9')
|
while (*s >= '0' && *s <= '9')
|
||||||
|
|
|
@ -387,7 +387,7 @@ struct uart_port *uart_get_console(struct uart_port *ports, int nr,
|
||||||
struct console *c);
|
struct console *c);
|
||||||
int uart_parse_earlycon(char *p, unsigned char *iotype, resource_size_t *addr,
|
int uart_parse_earlycon(char *p, unsigned char *iotype, resource_size_t *addr,
|
||||||
char **options);
|
char **options);
|
||||||
void uart_parse_options(char *options, int *baud, int *parity, int *bits,
|
void uart_parse_options(const char *options, int *baud, int *parity, int *bits,
|
||||||
int *flow);
|
int *flow);
|
||||||
int uart_set_options(struct uart_port *port, struct console *co, int baud,
|
int uart_set_options(struct uart_port *port, struct console *co, int baud,
|
||||||
int parity, int bits, int flow);
|
int parity, int bits, int flow);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue