commit | dc01e2a61853316f3dfc1d3743dba6e2703f50f2 | [log] [tgz] |
---|---|---|
author | Tom Rini <trini@konsulko.com> | Tue Jan 18 13:38:00 2022 -0500 |
committer | Tom Rini <trini@konsulko.com> | Tue Jan 18 13:38:00 2022 -0500 |
tree | 872c41b62af1a07287b695808c6207f36f29ec53 | |
parent | d9c87e3216d29ebb6f85ac496f547df81605356d [diff] |
miiphy.h: Remove CONFIG_DM_xxx guards Function prototypes must not be guarded with ifdef tests. Doing so prevents us from doing: if (CONFIG_IS_ENABLED(FOO)) func(); as that results in a warning when CONFIG_FOO is not enabled. Signed-off-by: Tom Rini <trini@konsulko.com>