On Sat, 23 Aug 2014 20:56:17 -0700 Igor Korot <[email protected]> wrote:
> [ 1.419227] b43-phy0 ERROR: FOUND UNSUPPORTED PHY (Analog 6, Type 5
> (LP), Revision 1)
> [ 1.420925] b43: probe of ssb0:0 failed with error -95
>
> What is "error -95"?
-EOPNOTSUPP
See below.
> Maybe I have wrong firmware?
No. You are using the wrong kernel.
The relevant code section, that throws the error is:
> int unsupported = 0;
>...
> switch (phy_type) {
>...
> #ifdef CONFIG_B43_PHY_LP
> case B43_PHYTYPE_LP:
> if (phy_rev > 2)
> unsupported = 1;
> break;
> #endif
>...
> default:
> unsupported = 1;
> }
> if (unsupported) {
> b43err(dev->wl, "FOUND UNSUPPORTED PHY (Analog %u, Type %d
> (%s), Revision %u)\n",
> analog_type, phy_type, b43_phy_name(dev, phy_type),
> phy_rev);
> return -EOPNOTSUPP;
> }
So for this error to trigger, you would have to have revision 3 or later, which
you don't,
or you would have to have a kernel without LP support compiled in.
Make sure you installed your kernel _and_ initramfs correctly.
Also make sure to boot the correct kernel.
--
Michael
signature.asc
Description: PGP signature
_______________________________________________ b43-dev mailing list [email protected] http://lists.infradead.org/mailman/listinfo/b43-dev
