Changeset 8c1eb69 in mainline for boot/arch/ppc32/loader/ofwarch.c


Ignore:
Timestamp:
2009-04-20T22:49:19Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d6d04e7
Parents:
8d049ee0
Message:

add support for alternate spelling of macio alias

File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/ppc32/loader/ofwarch.c

    r8d049ee0 r8c1eb69  
    5353        char device_name[BUF_SIZE];
    5454       
    55         if (ofw_get_property(ofw_aliases, "macio", device_name, sizeof(device_name)) <= 0)
     55        if ((ofw_get_property(ofw_aliases, "macio", device_name, sizeof(device_name)) <= 0)
     56            && (ofw_get_property(ofw_aliases, "mac-io", device_name, sizeof(device_name)) <= 0))
    5657                return false;
    5758       
Note: See TracChangeset for help on using the changeset viewer.