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.2-rc3 17 lines 394 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* 3 * Copyright (C) 2022 Bootlin 4 * 5 * Maxime Chevallier <maxime.chevallier@bootlin.com> 6 */ 7 8#ifndef __LINUX_PCS_ALTERA_TSE_H 9#define __LINUX_PCS_ALTERA_TSE_H 10 11struct phylink_pcs; 12struct net_device; 13 14struct phylink_pcs *alt_tse_pcs_create(struct net_device *ndev, 15 void __iomem *pcs_base, int reg_width); 16 17#endif /* __LINUX_PCS_ALTERA_TSE_H */