diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2012-05-31 22:38:22 +0200 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-06-06 21:20:22 +0200 |
commit | ccaf8c32d5ed08bfb4c45492f8f1c145fd45f4e8 (patch) | |
tree | 44391909839833768d9aa180fbc79d3f97be41eb /drivers/ssb/scan.c | |
parent | mac80211: Clear wowlan flag when drv_suspend returns failure (diff) | |
download | linux-ccaf8c32d5ed08bfb4c45492f8f1c145fd45f4e8.tar.xz linux-ccaf8c32d5ed08bfb4c45492f8f1c145fd45f4e8.zip |
ssb: recognize ARM Cortex M3
I found this core on a BCM4322, a PCI card in the Linksys WRT610N V1.
This core is not used by the driver, this patch just makes ssb show the
correct name.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/ssb/scan.c')
-rw-r--r-- | drivers/ssb/scan.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/ssb/scan.c b/drivers/ssb/scan.c index 266c7c5c86dc..ab4627cf1114 100644 --- a/drivers/ssb/scan.c +++ b/drivers/ssb/scan.c @@ -90,6 +90,8 @@ const char *ssb_core_name(u16 coreid) return "ARM 1176"; case SSB_DEV_ARM_7TDMI: return "ARM 7TDMI"; + case SSB_DEV_ARM_CM3: + return "ARM Cortex M3"; } return "UNKNOWN"; } |