Skip to content
Snippets Groups Projects
Commit e2ce8169 authored by Kees Jongenburger's avatar Kees Jongenburger Committed by Tom Rini
Browse files

netbsd:fix documentation typo.

The documentation suggested the arguments where passed over r3-r6
while the code below simply does that over r0-r3.

Cc: Kumar Gala <galak@kernel.crashing.org>
parent ba931259
No related branches found
No related tags found
No related merge requests found
...@@ -1531,10 +1531,10 @@ static int do_bootm_netbsd(int flag, int argc, char * const argv[], ...@@ -1531,10 +1531,10 @@ static int do_bootm_netbsd(int flag, int argc, char * const argv[],
/* /*
* NetBSD Stage-2 Loader Parameters: * NetBSD Stage-2 Loader Parameters:
* r3: ptr to board info data * arg[0]: pointer to board info data
* r4: image address * arg[1]: image load address
* r5: console device * arg[2]: char pointer to the console device to use
* r6: boot args string * arg[3]: char pointer to the boot arguments
*/ */
(*loader)(gd->bd, os_hdr, consdev, cmdline); (*loader)(gd->bd, os_hdr, consdev, cmdline);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment