diff options
author | Burt P <pburt0@gmail.com> | 2017-07-23 04:15:26 -0500 |
---|---|---|
committer | Leandro A. F. Pereira <leandro@hardinfo.org> | 2017-07-24 18:07:58 -0700 |
commit | 15ef9fbc9cd422c7b5d574aa8fa43ae1fa2ec3ee (patch) | |
tree | 73fba09382a9b31c80a9cb6cc473ba109375b242 /modules/devices/devicetree.c | |
parent | 1d6415ed07283ecf026f23d73203b9a133909322 (diff) |
device tree: remove testing bit
Signed-off-by: Burt P <pburt0@gmail.com>
Diffstat (limited to 'modules/devices/devicetree.c')
-rw-r--r-- | modules/devices/devicetree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/devices/devicetree.c b/modules/devices/devicetree.c index 73f8827b..796a2bad 100644 --- a/modules/devices/devicetree.c +++ b/modules/devices/devicetree.c @@ -199,7 +199,7 @@ gchar *get_summary() { } /* Power Macintosh */ - if ( 1 || strstr(compat, "PowerBook") != NULL + if (strstr(compat, "PowerBook") != NULL || strstr(compat, "MacRISC") != NULL || strstr(compat, "Power Macintosh") != NULL) { tmp[9] = ppc_mac_details(); |