Diff between ac17a42fc5fa8e6b7a855ba7c9aab291b42ac8ce and b725195bd6a782bdc9689d43e47005c711bcebce

Changed Files

File Additions Deletions Status
monitor/packet.c +2 -0 modified

Full Patch

diff --git a/monitor/packet.c b/monitor/packet.c
index 8f75ee2..af51378 100644
--- a/monitor/packet.c
+++ b/monitor/packet.c
@@ -2404,6 +2404,7 @@ static const struct {
 	const char *str;
 } broadcom_uart_subversion_table[] = {
 	{ 0x410e, "BCM43341B0"	},	/* 002.001.014 */
+	{ 0x4406, "BCM4324B3"	},	/* 002.004.006 */
 	{ }
 };
 
@@ -2433,6 +2434,7 @@ static void print_manufacturer_broadcom(uint16_t subversion, uint16_t revision)
 
 	switch ((rev & 0xf000) >> 12) {
 	case 0:
+	case 3:
 		for (i = 0; broadcom_uart_subversion_table[i].str; i++) {
 			if (broadcom_uart_subversion_table[i].ver == ver) {
 				str = broadcom_uart_subversion_table[i].str;