From 7c56f5f6e3881eba98abf0026cadd4d16047906c Mon Sep 17 00:00:00 2001 From: Michael Grzeschik Date: Wed, 11 Aug 2010 11:53:29 +0200 Subject: loadb: get console baudrate from class_dev not dev With this fix its possible to run loadb -f /dev/ram0 again with the latest next patchstack. Without you will run into data_abort. Tested with omap3530 beagleboard. Signed-off-by: Michael Grzeschik Signed-off-by: Sascha Hauer --- commands/loadb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/loadb.c b/commands/loadb.c index 437b60f8c5..acfb94fe08 100644 --- a/commands/loadb.c +++ b/commands/loadb.c @@ -724,7 +724,7 @@ static int do_load_serial_bin(struct command *cmdtp, int argc, char *argv[]) printf("%s:No console device with STDIN and STDOUT\n", argv[0]); return -ENODEV; } - current_baudrate = (int)simple_strtoul(dev_get_param(cdev->dev, "baudrate"), NULL, 10); + current_baudrate = (int)simple_strtoul(dev_get_param(&cdev->class_dev, "baudrate"), NULL, 10); /* Load Defaults */ if (load_baudrate == 0) -- cgit v1.2.3