mac80211: fix rekeying in ap mode with connected powersave stations
[openwrt/openwrt.git] / target / linux / brcm63xx / files / arch / mips / bcm63xx / clk.c
index 909875d07ef9b3e3d1cddfe37a5d11d69ef3dc21..eaf6196c755e6f247511b0b051d35e6b6c56e6b9 100644 (file)
@@ -51,6 +51,8 @@ static void enet_misc_set(struct clk *clk, int enable)
 
        if (BCMCPU_IS_6338())
                mask = CKCTL_6338_ENET_EN;
+       else if (BCMCPU_IS_6345())
+               mask = CKCTL_6345_ENET_EN;
        else if (BCMCPU_IS_6348())
                mask = CKCTL_6348_ENET_EN;
        else
@@ -147,6 +149,7 @@ static void usbs_set(struct clk *clk, int enable)
 
        switch(bcm63xx_get_cpu_id()) {
        case BCM6338_CPU_ID: mask = CKCTL_6338_USBS_EN; break;
+       case BCM6345_CPU_ID: mask = CKCTL_6345_USBS_EN; break;
        case BCM6348_CPU_ID: mask = CKCTL_6348_USBS_EN; break;
        default:
                return;