1 /* 2 * This file is auto-generated. Modifications will be lost. 3 * 4 * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/ 5 * for more information. 6 */ 7 #ifndef __BPQETHER_H 8 #define __BPQETHER_H 9 #include <linux/if_ether.h> 10 #define SIOCSBPQETHOPT (SIOCDEVPRIVATE + 0) 11 #define SIOCSBPQETHADDR (SIOCDEVPRIVATE + 1) 12 struct bpq_ethaddr { 13 unsigned char destination[ETH_ALEN]; 14 unsigned char accept[ETH_ALEN]; 15 }; 16 #define SIOCGBPQETHPARAM 0x5000 17 #define SIOCSBPQETHPARAM 0x5001 18 struct bpq_req { 19 int cmd; 20 int speed; 21 int clockmode; 22 int txdelay; 23 unsigned char persist; 24 int slotime; 25 int squeldelay; 26 int dmachan; 27 int irq; 28 }; 29 #endif 30