commit | 60435ca4da823e40c4a9c7b4eda3c0b68966f9ee | [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 | e559193968f213f15f1522315e5937ed52c6d444 [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>