]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
Blackfin: bfin_mac: drop volatile markings on packet buffers
authorMike Frysinger <vapier@gentoo.org>
Thu, 19 Jul 2012 04:08:47 +0000 (00:08 -0400)
committerMike Frysinger <vapier@gentoo.org>
Thu, 19 Jul 2012 04:09:32 +0000 (00:09 -0400)
Now that common code doesn't declare these as volatile, we don't need to
either anymore.  This fixes the build warning:

bfin_mac.c: In function 'bfin_EMAC_recv':
bfin_mac.c:193:23: warning: assignment discards qualifiers from pointer target type

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
drivers/net/bfin_mac.c

index e24ac4a174c12dd2064fb11510dd3e84b4f54cd1..c63398ebf8d1235fa7a187f825ae55db429e81b2 100644 (file)
@@ -190,8 +190,7 @@ static int bfin_EMAC_recv(struct eth_device *dev)
 
                debug("%s: len = %d\n", __func__, length - 4);
 
-               NetRxPackets[rxIdx] =
-                   (volatile uchar *)(rxbuf[rxIdx]->FrmData->Dest);
+               NetRxPackets[rxIdx] = rxbuf[rxIdx]->FrmData->Dest;
                NetReceive(NetRxPackets[rxIdx], length - 4);
                bfin_write_DMA1_IRQ_STATUS(DMA_DONE | DMA_ERR);
                rxbuf[rxIdx]->StatusWord = 0x00000000;