Message ID | 1460386361-29918-1-git-send-email-akarwar@marvell.com (mailing list archive) |
---|---|
State | Accepted |
Delegated to: | Kalle Valo |
Headers | show |
> This patch adds missing break statement at the end of > PCIE_DEVICE_ID_MARVELL_88W8897 switch section. > > Signed-off-by: Amitkumar Karwar <akarwar@marvell.com> Thanks, 5 patches applied to wireless-drivers-next.git: c865a70098d9 mwifiex: missing break statement e87650bce9a5 mwifiex: add pcie usb/uart firmware download support b9db39787933 mwifiex: add default setting for pcie firmware download c3ec0ff6425b mwifiex: do not wait on semaphore during card removal bcc920e8f083 mwifiex: fix incorrect ht capability problem Kalle Valo -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/net/wireless/marvell/mwifiex/pcie.c b/drivers/net/wireless/marvell/mwifiex/pcie.c index edf8b07..c28edbb 100644 --- a/drivers/net/wireless/marvell/mwifiex/pcie.c +++ b/drivers/net/wireless/marvell/mwifiex/pcie.c @@ -2831,6 +2831,7 @@ static void mwifiex_pcie_get_fw_name(struct mwifiex_adapter *adapter) default: break; } + break; case PCIE_DEVICE_ID_MARVELL_88W8997: mwifiex_read_reg(adapter, 0x0c48, &revision_id); switch (revision_id) {
This patch adds missing break statement at the end of PCIE_DEVICE_ID_MARVELL_88W8897 switch section. Signed-off-by: Amitkumar Karwar <akarwar@marvell.com> --- drivers/net/wireless/marvell/mwifiex/pcie.c | 1 + 1 file changed, 1 insertion(+)