1
0
Fork 0

net: ll_temac: Fix typo bug for 32-bit

Fixes: d84aec4215 ("net: ll_temac: Fix support for 64-bit platforms")

Signed-off-by: Esben Haabendal <esben@geanix.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
hifive-unleashed-5.2
Esben Haabendal 2019-05-02 08:43:43 +02:00 committed by David S. Miller
parent f76c4b571f
commit 26f146ed97
1 changed files with 1 additions and 1 deletions

View File

@ -658,7 +658,7 @@ void *ptr_from_txbd(struct cdmac_bd *bd)
#else
void ptr_to_txbd(void *p, struct cmdac_bd *bd)
void ptr_to_txbd(void *p, struct cdmac_bd *bd)
{
bd->app4 = (u32)p;
}