j
: Next unread message k
: Previous unread message j a
: Jump to all threads
j l
: Jump to MailingList overview
Author: afaerber Date: Sun Oct 31 10:59:12 2010 New Revision: 935 URL: http://tracker.coreboot.org/trac/openbios/changeset/935
Log: ppc: Typo fix
It's Old World vs. New World Macs.
Signed-off-by: Andreas Färber andreas.faerber@web.de
Modified: trunk/openbios-devel/arch/ppc/qemu/init.c
Modified: trunk/openbios-devel/arch/ppc/qemu/init.c ============================================================================== --- trunk/openbios-devel/arch/ppc/qemu/init.c Sun Oct 31 00:49:20 2010 (r934) +++ trunk/openbios-devel/arch/ppc/qemu/init.c Sun Oct 31 10:59:12 2010 (r935) @@ -646,7 +646,7 @@ fword("find-device");
switch(machine_id) { - case ARCH_HEATHROW: /* OldWord */ + case ARCH_HEATHROW: /* OldWorld */
/* model */
On 31.10.2010, at 02:59, repository service svn@openbios.org wrote:
Author: afaerber Date: Sun Oct 31 10:59:12 2010 New Revision: 935 URL: http://tracker.coreboot.org/trac/openbios/changeset/935
Log: ppc: Typo fix
It's Old World vs. New World Macs.
Signed-off-by: Andreas Färber andreas.faerber@web.de
Modified: trunk/openbios-devel/arch/ppc/qemu/init.c
Modified: trunk/openbios-devel/arch/ppc/qemu/init.c
--- trunk/openbios-devel/arch/ppc/qemu/init.c Sun Oct 31 00:49:20 2010 (r934) +++ trunk/openbios-devel/arch/ppc/qemu/init.c Sun Oct 31 10:59:12 2010 (r935) @@ -646,7 +646,7 @@ fword("find-device");
switch(machine_id) {
- case ARCH_HEATHROW: /* OldWord */
- case ARCH_HEATHROW: /* OldWorld */
Does this change anything but whitespace? :)
Alex
Am 31.10.2010 um 15:44 schrieb Alexander Graf:
On 31.10.2010, at 02:59, repository service svn@openbios.org wrote:
Author: afaerber Date: Sun Oct 31 10:59:12 2010 New Revision: 935 URL: http://tracker.coreboot.org/trac/openbios/changeset/935
Log: ppc: Typo fix
It's Old World vs. New World Macs.
[...]
@@ -646,7 +646,7 @@ fword("find-device");
switch(machine_id) {
- case ARCH_HEATHROW: /* OldWord */
- case ARCH_HEATHROW: /* OldWorld */
Does this change anything but whitespace? :)
Yes, it inserts one 'ell' character. :) No functional changes.
Andreas