Commit a831f20b authored by Ricardo Ribalda Delgado's avatar Ricardo Ribalda Delgado Committed by John W. Linville

wireless/p54: Remove duplicated net2280 header

The usb gadget driver net2280 has exported a header file with the
register definition of the net2280 chip.

Remove the custom/duplicated header file in favor of that header file
in include/linux
Signed-off-by: default avatarRicardo Ribalda Delgado <ricardo.ribalda@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 99958588
This diff is collapsed.
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
/* for isl3886 register definitions used on ver 1 devices */ /* for isl3886 register definitions used on ver 1 devices */
#include "p54pci.h" #include "p54pci.h"
#include "net2280.h" #include <linux/usb/net2280.h>
/* pci */ /* pci */
#define NET2280_BASE 0x10000000 #define NET2280_BASE 0x10000000
...@@ -93,6 +93,17 @@ enum net2280_op_type { ...@@ -93,6 +93,17 @@ enum net2280_op_type {
NET2280_DEV_CFG_U16 = 0x0883 NET2280_DEV_CFG_U16 = 0x0883
}; };
struct net2280_reg_write {
__le16 port;
__le32 addr;
__le32 val;
} __packed;
struct net2280_reg_read {
__le16 port;
__le32 addr;
} __packed;
#define P54U_FW_BLOCK 2048 #define P54U_FW_BLOCK 2048
#define X2_SIGNATURE "x2 " #define X2_SIGNATURE "x2 "
......
Markdown is supported
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