Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

[PATCH]Use DMA_BIT_MASK(44) instead of deprecated DMA_44BIT_MASK

1 view
Skip to first unread message

Marin Mitov

unread,
Nov 8, 2009, 11:00:47 AM11/8/09
to David S. Miller, linux-...@vger.kernel.org, net...@vger.kernel.org
Hi all,

Use DMA_BIT_MASK(44) instead of deprecated DMA_44BIT_MASK

Signed-off-by: Marin Mitov <mi...@issp.bas.bg>

=========================================================
--- a/drivers/net/niu.c 2009-11-08 17:09:40.000000000 +0200
+++ b/drivers/net/niu.c 2009-11-08 17:10:31.000000000 +0200
@@ -45,10 +45,6 @@
MODULE_LICENSE("GPL");
MODULE_VERSION(DRV_MODULE_VERSION);

-#ifndef DMA_44BIT_MASK
-#define DMA_44BIT_MASK 0x00000fffffffffffULL
-#endif
-
#ifndef readq
static u64 readq(void __iomem *reg)
{
@@ -9915,7 +9911,7 @@
PCI_EXP_DEVCTL_RELAX_EN);
pci_write_config_word(pdev, pos + PCI_EXP_DEVCTL, val16);

- dma_mask = DMA_44BIT_MASK;
+ dma_mask = DMA_BIT_MASK(44);
err = pci_set_dma_mask(pdev, dma_mask);
if (!err) {
dev->features |= NETIF_F_HIGHDMA;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majo...@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

David Miller

unread,
Nov 11, 2009, 1:31:37 AM11/11/09
to mi...@issp.bas.bg, linux-...@vger.kernel.org, net...@vger.kernel.org
From: Marin Mitov <mi...@issp.bas.bg>
Date: Sun, 8 Nov 2009 17:59:27 +0200

> Use DMA_BIT_MASK(44) instead of deprecated DMA_44BIT_MASK
>
> Signed-off-by: Marin Mitov <mi...@issp.bas.bg>

Applied to net-next-2.6

0 new messages