svn commit: r309721 - head/sys/dev/usb/wlan

Andriy Voskoboinyk avos at FreeBSD.org
Thu Dec 8 20:54:55 UTC 2016


Author: avos
Date: Thu Dec  8 20:54:54 2016
New Revision: 309721
URL: https://svnweb.freebsd.org/changeset/base/309721

Log:
  rsu: fix incorrect register addresses.

Modified:
  head/sys/dev/usb/wlan/if_rsureg.h

Modified: head/sys/dev/usb/wlan/if_rsureg.h
==============================================================================
--- head/sys/dev/usb/wlan/if_rsureg.h	Thu Dec  8 19:28:12 2016	(r309720)
+++ head/sys/dev/usb/wlan/if_rsureg.h	Thu Dec  8 20:54:54 2016	(r309721)
@@ -51,16 +51,16 @@
 #define R92S_MACID		(R92S_MACIDSETTING + 0x000)
 #define R92S_MAR		(R92S_MACIDSETTING + 0x010)
 
-#define R92S_GP			0x01e0
-#define R92S_GPIO_CTRL		(R92S_GP + 0x00c)
-#define R92S_GPIO_IO_SEL	(R92S_GP + 0x00e)
-#define R92S_MAC_PINMUX_CTRL	(R92S_GP + 0x011)
-
 #define R92S_SECURITY		0x0240
 #define R92S_CAMCMD		(R92S_SECURITY + 0x000)
 #define R92S_CAMWRITE		(R92S_SECURITY + 0x004)
 #define R92S_CAMREAD		(R92S_SECURITY + 0x008)
 
+#define R92S_GP			0x02e0
+#define R92S_GPIO_CTRL		(R92S_GP + 0x00c)
+#define R92S_GPIO_IO_SEL	(R92S_GP + 0x00e)
+#define R92S_MAC_PINMUX_CTRL	(R92S_GP + 0x011)
+
 #define R92S_IOCMD_CTRL		0x0370
 #define R92S_IOCMD_DATA		0x0374
 


More information about the svn-src-head mailing list