mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
356c3e9afa
The next patch require net/dsa/tag_lan9303.c to access struct lan9303. Therefore move struct lan9303 definitions from drivers/net/dsa/lan9303.h to new file include/linux/dsa/lan9303.h. Signed-off-by: Egil Hjelmeland <privat@egil-hjelmeland.no> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
12 lines
338 B
C
12 lines
338 B
C
#include <linux/regmap.h>
|
|
#include <linux/device.h>
|
|
#include <net/dsa.h>
|
|
|
|
#include <linux/dsa/lan9303.h>
|
|
|
|
extern const struct regmap_access_table lan9303_register_set;
|
|
extern const struct lan9303_phy_ops lan9303_indirect_phy_ops;
|
|
|
|
int lan9303_probe(struct lan9303 *chip, struct device_node *np);
|
|
int lan9303_remove(struct lan9303 *chip);
|