From: Felix Fietkau Date: Sat, 14 Jan 2006 14:52:37 +0000 (+0000) Subject: remove bogus backslashes in b44 patch X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=1f1cb98f0c7194933d1271d561f0a69a58035c15 remove bogus backslashes in b44 patch SVN-Revision: 2975 --- diff --git a/openwrt/target/linux/linux-2.4/patches/brcm/007-b44_bcm47xx_support.patch b/openwrt/target/linux/linux-2.4/patches/brcm/007-b44_bcm47xx_support.patch index 5988c65db2..205fc83831 100644 --- a/openwrt/target/linux/linux-2.4/patches/brcm/007-b44_bcm47xx_support.patch +++ b/openwrt/target/linux/linux-2.4/patches/brcm/007-b44_bcm47xx_support.patch @@ -192,10 +192,10 @@ diff -urN linux.old/drivers/net/b44.c linux.dev/drivers/net/b44.c + * see https://dev.openwrt.org/ticket/146 + * check and reset bit "isolate" + */ -+ if ((bp->pdev->device == PCI_DEVICE_ID_BCM4713) && \ -+ (atoi(nvram_get("boardnum")) == 2) && \ -+ (__b44_readphy(bp, 0, MII_BMCR, &val) == 0) && \ -+ (val & BMCR_ISOLATE) && \ ++ if ((bp->pdev->device == PCI_DEVICE_ID_BCM4713) && ++ (atoi(nvram_get("boardnum")) == 2) && ++ (__b44_readphy(bp, 0, MII_BMCR, &val) == 0) && ++ (val & BMCR_ISOLATE) && + (__b44_writephy(bp, 0, MII_BMCR, val & ~BMCR_ISOLATE) != 0)) { + printk(KERN_WARNING PFX "PHY: cannot reset MII transceiver isolate bit.\n"); + }