diff options
| author | Jakub Kicinski <[email protected]> | 2020-09-05 13:09:16 -0700 |
|---|---|---|
| committer | Jakub Kicinski <[email protected]> | 2020-09-05 13:10:03 -0700 |
| commit | 35b237a51f4e04a3b07e6047bcf3b491997f0ef5 (patch) | |
| tree | e107272160bde0bd8c34720b1c5ce600243d1191 /include/linux | |
| parent | 447a851bdb1a3b329fb01f66c467c2e6888af72b (diff) | |
| parent | 771089c2a485958e423f305e974303760167b45c (diff) | |
Merge branch 'net-dsa-bcm_sf2-Ensure-MDIO-diversion-is-used'
Florian Fainelli says:
====================
net: dsa: bcm_sf2: Ensure MDIO diversion is used
Changes in v2:
- export of_update_property() to permit building bcm_sf2 as a module
- provided a better explanation of the problem being solved after
explaining it to Andrew during the v1 review
====================
Signed-off-by: Jakub Kicinski <[email protected]>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/of.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/of.h b/include/linux/of.h index 5cf7ae0465d1..481ec0467285 100644 --- a/include/linux/of.h +++ b/include/linux/of.h @@ -929,6 +929,11 @@ static inline int of_machine_is_compatible(const char *compat) return 0; } +static inline int of_remove_property(struct device_node *np, struct property *prop) +{ + return 0; +} + static inline bool of_console_check(const struct device_node *dn, const char *name, int index) { return false; |