Skip to content
Snippets Groups Projects
Commit e2c8ef9d authored by Adam Wujek's avatar Adam Wujek
Browse files

userspace/tools: remove libtools.h and driver_stuff.h


these files were not used anymore

Signed-off-by: default avatarAdam Wujek <dev_public@wujek.eu>
parent 607e1856
Branches
Tags
No related merge requests found
#define PRIV_IOCGCALIBRATE (SIOCDEVPRIVATE + 1)
#define PRIV_IOCGGETPHASE (SIOCDEVPRIVATE + 2)
#define PRIV_IOCREADREG (SIOCDEVPRIVATE + 3)
#define PRIV_IOCPHYREG (SIOCDEVPRIVATE + 4)
#define NIC_READ_PHY_CMD(addr) (((addr) & 0xff) << 16)
#define NIC_RESULT_DATA(val) ((val) & 0xffff)
#define NIC_WRITE_PHY_CMD(addr, value) ((((addr) & 0xff) << 16) \
| (1 << 31) \
| ((value) & 0xffff))
extern int load_fpga_main(char *fname);
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment