/* If exclude and we receive an unencrypted, drop it */
                if ((wlandev->hostwep & HOSTWEP_EXCLUDEUNENCRYPTED) &&
                    !WLAN_GET_FC_ISWEP(fc)) {
-                       goto done;
+                       break;
                }
 
                data_len = le16_to_cpu(usbin->rxfrm.desc.data_len);
                netdev_warn(hw->wlandev->netdev, "Received frame on unsupported port=%d\n",
                            HFA384x_RXSTATUS_MACPORT_GET(
                                    usbin->rxfrm.desc.status));
-               goto done;
                break;
        }
 
-done:
        return;
 }
 
        case HFA384x_PDR_HFA3861_MANF_TESTI:
                /* code is OK */
                return 1;
-               break;
        default:
                if (pdrcode < 0x1000) {
                        /* code is OK, but we don't know exactly what it is */
                                 pdrcode);
                        return 0;
                }
-               break;
        }
        return 0;               /* avoid compiler warnings */
 }