Skip to content
Snippets Groups Projects
Commit 1b8c18b9 authored by Joe Hershberger's avatar Joe Hershberger
Browse files

net: Fix build regression in macb.c


The added weak symbol must not be static.

This was introduced in 416ce623

Signed-off-by: default avatarJoe Hershberger <joe.hershberger@ni.com>
parent 416ce623
No related branches found
No related tags found
No related merge requests found
...@@ -163,7 +163,7 @@ static u16 macb_mdio_read(struct macb_device *macb, u8 reg) ...@@ -163,7 +163,7 @@ static u16 macb_mdio_read(struct macb_device *macb, u8 reg)
return MACB_BFEXT(DATA, frame); return MACB_BFEXT(DATA, frame);
} }
static void __weak arch_get_mdio_control(const char *name) void __weak arch_get_mdio_control(const char *name)
{ {
return; return;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment