| 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
|---|---|
| 2 | /* |
| 3 | * Copyright (C) 2022 Schneider Electric |
| 4 | * |
| 5 | * Clément Léger <clement.leger@bootlin.com> |
| 6 | */ |
| 7 | |
| 8 | #ifndef __LINUX_PCS_MIIC_H |
| 9 | #define __LINUX_PCS_MIIC_H |
| 10 | |
| 11 | struct phylink; |
| 12 | struct device_node; |
| 13 | |
| 14 | struct phylink_pcs *miic_create(struct device *dev, struct device_node *np); |
| 15 | |
| 16 | void miic_destroy(struct phylink_pcs *pcs); |
| 17 | |
| 18 | #endif /* __LINUX_PCS_MIIC_H */ |
| 19 |
