Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * linux/include/net/ethoc.h
0004  *
0005  * Copyright (C) 2008-2009 Avionic Design GmbH
0006  *
0007  * Written by Thierry Reding <thierry.reding@avionic-design.de>
0008  */
0009 
0010 #ifndef LINUX_NET_ETHOC_H
0011 #define LINUX_NET_ETHOC_H 1
0012 
0013 #include <linux/if.h>
0014 #include <linux/types.h>
0015 
0016 struct ethoc_platform_data {
0017     u8 hwaddr[IFHWADDRLEN];
0018     s8 phy_id;
0019     u32 eth_clkfreq;
0020     bool big_endian;
0021 };
0022 
0023 #endif /* !LINUX_NET_ETHOC_H */