Is anyone working on support for this adapter?

ssb:v4243id0812rev0D

And also, the ssb driver prints a warning:

Warning at drivers/ssb/main.c:889 ssb_tmslow_reject_bitmask()

Code is looking for either 0 or 1 in the revision field, but there is a 6 there:
    ssb: rev 60000000

Printed with this patch:

        case SSB_IDLOW_SSBREV_23:
                return SSB_TMSLOW_REJECT_23;
        default:
+               printk(KERN_ERR "ssb: rev %x\n",
+                      ssb_read32(dev, SSB_IDLOW) & SSB_IDLOW_SSBREV);
                WARN_ON(1);
        }
        return (SSB_TMSLOW_REJECT_22 | SSB_TMSLOW_REJECT_23);

_______________________________________________
Bcm43xx-dev mailing list
[email protected]
https://lists.berlios.de/mailman/listinfo/bcm43xx-dev

Reply via email to