diff options
author | Larry Finger <Larry.Finger@lwfinger.net> | 2015-02-18 15:09:38 -0500 |
---|---|---|
committer | Kalle Valo <kvalo@codeaurora.org> | 2015-03-03 08:49:40 -0500 |
commit | 16f7031aeb63fc567c95bd2c3e431499defe2bf0 (patch) | |
tree | 5af70c4a5e983500e30a98eda847a1fd0cae508c | |
parent | 2a19f7765bd90a56f3916a603e25b57b3b087480 (diff) |
ssb: Silence warning for unknown backplane revision
When using a BCM4318 in a PCMCIA format, I get a startup message that the
device uses backplane revision 0xF000000. Next a WARNING is logged. Despite
the message, the device works fine, This patch silences the warning.
Cc: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
-rw-r--r-- | drivers/ssb/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/ssb/main.c b/drivers/ssb/main.c index 1e180c400f17..a48a7439a206 100644 --- a/drivers/ssb/main.c +++ b/drivers/ssb/main.c | |||
@@ -1135,6 +1135,8 @@ static u32 ssb_tmslow_reject_bitmask(struct ssb_device *dev) | |||
1135 | case SSB_IDLOW_SSBREV_25: /* TODO - find the proper REJECT bit */ | 1135 | case SSB_IDLOW_SSBREV_25: /* TODO - find the proper REJECT bit */ |
1136 | case SSB_IDLOW_SSBREV_27: /* same here */ | 1136 | case SSB_IDLOW_SSBREV_27: /* same here */ |
1137 | return SSB_TMSLOW_REJECT; /* this is a guess */ | 1137 | return SSB_TMSLOW_REJECT; /* this is a guess */ |
1138 | case SSB_IDLOW_SSBREV: | ||
1139 | break; | ||
1138 | default: | 1140 | default: |
1139 | WARN(1, KERN_INFO "ssb: Backplane Revision 0x%.8X\n", rev); | 1141 | WARN(1, KERN_INFO "ssb: Backplane Revision 0x%.8X\n", rev); |
1140 | } | 1142 | } |