]> git.baikalelectronics.ru Git - kernel.git/commit
net: mediatek: remove incorrect dma_mask assignment
authorArnd Bergmann <arnd@arndb.de>
Mon, 14 Mar 2016 14:07:11 +0000 (15:07 +0100)
committerDavid S. Miller <davem@davemloft.net>
Mon, 14 Mar 2016 17:06:26 +0000 (13:06 -0400)
commit7ae895015af7594531be2253d05da91e4a917b1c
treefdc0b4be952288caa4b19949afd260255036fcbb
parent21738cf6538a7d3a876bd5f60ed5e7d44d1ae562
net: mediatek: remove incorrect dma_mask assignment

Device drivers should not mess with the DMA mask directly,
but instead call dma_set_mask() etc if needed.

In case of the mtk_eth_soc driver, the mask already gets set
correctly when the device is created, and setting it again
is against the documented API.

This removes the incorrect setting.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/mediatek/mtk_eth_soc.c