Commit e2ce81696a6aeea65e86d7677d270e589a7d4d81

Authored by Kees Jongenburger
Committed by Tom Rini
1 parent ba931259b1

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>

Showing 1 changed file with 4 additions and 4 deletions Side-by-side Diff

... ... @@ -1531,10 +1531,10 @@
1531 1531  
1532 1532 /*
1533 1533 * NetBSD Stage-2 Loader Parameters:
1534   - * r3: ptr to board info data
1535   - * r4: image address
1536   - * r5: console device
1537   - * r6: boot args string
  1534 + * arg[0]: pointer to board info data
  1535 + * arg[1]: image load address
  1536 + * arg[2]: char pointer to the console device to use
  1537 + * arg[3]: char pointer to the boot arguments
1538 1538 */
1539 1539 (*loader)(gd->bd, os_hdr, consdev, cmdline);
1540 1540