Skip to content

Commit

Permalink
niu: Use DMA_BIT_MASK(44) instead of deprecated DMA_44BIT_MASK
Browse files Browse the repository at this point in the history
Use DMA_BIT_MASK(44) instead of deprecated DMA_44BIT_MASK

Signed-off-by: Marin Mitov <mitov@issp.bas.bg>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Marin Mitov authored and David S. Miller committed Nov 11, 2009
1 parent 30fff92 commit 8cbd962
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions drivers/net/niu.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,6 @@ MODULE_DESCRIPTION("NIU ethernet driver");
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)
{
Expand Down Expand Up @@ -9918,7 +9914,7 @@ static int __devinit niu_pci_init_one(struct pci_dev *pdev,
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;
Expand Down

0 comments on commit 8cbd962

Please sign in to comment.