Skip to content

Commit

Permalink
brcm47xx: ssb: recognize ARM Cortex M3
Browse files Browse the repository at this point in the history
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31788 3c298f89-4303-0410-b956-a3cf2f4a3e73
  • Loading branch information
hauke committed May 18, 2012
1 parent addb485 commit aa8a188
Showing 1 changed file with 21 additions and 0 deletions.
@@ -0,0 +1,21 @@
--- 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";
}
--- a/include/linux/ssb/ssb.h
+++ b/include/linux/ssb/ssb.h
@@ -243,6 +243,7 @@ struct ssb_bus_ops {
#define SSB_DEV_MINI_MACPHY 0x823
#define SSB_DEV_ARM_1176 0x824
#define SSB_DEV_ARM_7TDMI 0x825
+#define SSB_DEV_ARM_CM3 0x82A

/* Vendor-ID values */
#define SSB_VENDOR_BROADCOM 0x4243

0 comments on commit aa8a188

Please sign in to comment.