Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.0 18 lines 385 B view raw
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 11struct phylink; 12struct device_node; 13 14struct phylink_pcs *miic_create(struct device *dev, struct device_node *np); 15 16void miic_destroy(struct phylink_pcs *pcs); 17 18#endif /* __LINUX_PCS_MIIC_H */