The patch titled Ath5k panic fix has been added to the -mm tree. Its filename is ath5k-panic-fix.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: Ath5k panic fix From: Krzysztof Halasa <khc@xxxxxxxxx> Ath5k panics on ath_open() because sc->pdev is never set, fixed. Signed-off-by: Krzysztof Halasa <khc@xxxxxxxxx> Cc: Jiri Slaby <jirislaby@xxxxxxxxx> Cc: "John W. Linville" <linville@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/net/wireless/ath5k_base.c | 1 + 1 file changed, 1 insertion(+) diff -puN drivers/net/wireless/ath5k_base.c~ath5k-panic-fix drivers/net/wireless/ath5k_base.c --- a/drivers/net/wireless/ath5k_base.c~ath5k-panic-fix +++ a/drivers/net/wireless/ath5k_base.c @@ -2297,6 +2297,7 @@ static int __devinit ath_pci_probe(struc hw->max_rssi = 127; /* FIXME: get a real value for this. */ sc = hw->priv; sc->hw = hw; + sc->pdev = pdev; /* * Mark the device as detached to avoid processing _ Patches currently in -mm which might be from khc@xxxxxxxxx are intel-fb-pixel-clock-calculation-fix.patch ath5k-panic-fix.patch intel-fb-support-for-interlaced-video-modes.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html