Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 185845 | Differences between
and this patch

Collapse All | Expand All

(-)acx-20070101/pci.c.orig (-1 / +1 lines)
Lines 2104-2110 Link Here
2104
/* TODO: pci_set_power_state(pdev, PCI_D0); ? */
2104
/* TODO: pci_set_power_state(pdev, PCI_D0); ? */
2105
2105
2106
	/* request shared IRQ handler */
2106
	/* request shared IRQ handler */
2107
	if (request_irq(ndev->irq, acxpci_i_interrupt, SA_SHIRQ, ndev->name, ndev)) {
2107
	if (request_irq(ndev->irq, acxpci_i_interrupt, IRQF_SHARED, ndev->name, ndev)) {
2108
		printk("%s: request_irq FAILED\n", ndev->name);
2108
		printk("%s: request_irq FAILED\n", ndev->name);
2109
		result = -EAGAIN;
2109
		result = -EAGAIN;
2110
		goto done;
2110
		goto done;
(-)acx-20070101/common.c.orig (-1 / +1 lines)
Lines 2754-2760 Link Here
2754
	skb->dev = adev->ndev;
2754
	skb->dev = adev->ndev;
2755
	skb->dev->last_rx = jiffies;
2755
	skb->dev->last_rx = jiffies;
2756
2756
2757
	skb->mac.raw = skb->data;
2757
	skb_reset_mac_header(skb);
2758
	skb->ip_summed = CHECKSUM_NONE;
2758
	skb->ip_summed = CHECKSUM_NONE;
2759
	skb->pkt_type = PACKET_OTHERHOST;
2759
	skb->pkt_type = PACKET_OTHERHOST;
2760
	skb->protocol = htons(ETH_P_80211_RAW);
2760
	skb->protocol = htons(ETH_P_80211_RAW);

Return to bug 185845