提交 ff20877a 编写于 作者: A Arnd Bergmann 提交者: David S. Miller

net: mv643xx_eth: add missing semicolon

76723bca "net: mv643xx_eth: add DT parsing support" added a
dummy mv643xx_eth_shared_of_probe() fallback function with a
typo.

This adds the missing semicolon so we can build without CONFIG_OF
again, and changes both dummy functions to the more conventional
"static inline" syntax, which can avoid potential problems with
the empty macro.
Signed-off-by: NArnd Bergmann <arnd@arndb.de>
Cc: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 6f45eba1
......@@ -2582,12 +2582,14 @@ static void mv643xx_eth_shared_of_remove(void)
}
}
#else
static int mv643xx_eth_shared_of_probe(struct platform_device *pdev)
static inline int mv643xx_eth_shared_of_probe(struct platform_device *pdev)
{
return 0
return 0;
}
#define mv643xx_eth_shared_of_remove()
static inline void mv643xx_eth_shared_of_remove(void)
{
}
#endif
static int mv643xx_eth_shared_probe(struct platform_device *pdev)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册