From b2281abf115031a5242647e0b5b170ffd3bca994 Mon Sep 17 00:00:00 2001 From: Ben Dooks Date: Thu, 3 Nov 2005 21:07:37 +0000 Subject: [SERIAL] 8250_early.c passing 0 instead of NULL Fix sparse warning about passing `0` to simple_strtoul() Signed-off-by: Ben Dooks Signed-off-by: Russell King --- drivers/serial/8250_early.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'drivers/serial/8250_early.c') diff --git a/drivers/serial/8250_early.c b/drivers/serial/8250_early.c index b7a5dd7..59ba5d9 100644 --- a/drivers/serial/8250_early.c +++ b/drivers/serial/8250_early.c @@ -164,7 +164,7 @@ static int __init parse_options(struct early_uart_device *device, char *options) if ((options = strchr(options, ','))) { options++; - device->baud = simple_strtoul(options, 0, 0); + device->baud = simple_strtoul(options, NULL, 0); length = min(strcspn(options, " "), sizeof(device->options)); strncpy(device->options, options, length); } else { -- cgit v1.1