diff options
author | marius <marius@FreeBSD.org> | 2011-05-15 13:27:38 +0000 |
---|---|---|
committer | marius <marius@FreeBSD.org> | 2011-05-15 13:27:38 +0000 |
commit | 4dc53a810b1e7eb9076f99da5b18856b7bbf0eb9 (patch) | |
tree | 8dd41ab5864e2eddbfb42836cff900bdce64ca36 /sys/dev/scc | |
parent | b11c93f957bb80896ebd1a9ac27a0bd85a38d7ad (diff) | |
download | FreeBSD-src-4dc53a810b1e7eb9076f99da5b18856b7bbf0eb9.zip FreeBSD-src-4dc53a810b1e7eb9076f99da5b18856b7bbf0eb9.tar.gz |
Recognize the SAB 82532 found in Fujitsu PRIMEPOWER650 and 900.
Diffstat (limited to 'sys/dev/scc')
-rw-r--r-- | sys/dev/scc/scc_bfe_ebus.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/scc/scc_bfe_ebus.c b/sys/dev/scc/scc_bfe_ebus.c index 17386db..6c944f7 100644 --- a/sys/dev/scc/scc_bfe_ebus.c +++ b/sys/dev/scc/scc_bfe_ebus.c @@ -56,7 +56,8 @@ scc_ebus_probe(device_t dev) cmpt = ofw_bus_get_compat(dev); if (cmpt == NULL) cmpt = ""; - if (!strcmp(nm, "se") || !strcmp(cmpt, "sab82532")) { + if (!strcmp(nm, "se") || !strcmp(nm, "FJSV,se") || + !strcmp(cmpt, "sab82532")) { device_set_desc(dev, "Siemens SAB 82532 dual channel SCC"); sc->sc_class = &scc_sab82532_class; return (scc_bfe_probe(dev, EBUS_REGSHFT, EBUS_RCLK, 0)); |