svn commit: r314070 - head/sys/dev/iwm

Adrian Chadd adrian at FreeBSD.org
Wed Feb 22 02:51:32 UTC 2017


Author: adrian
Date: Wed Feb 22 02:51:30 2017
New Revision: 314070
URL: https://svnweb.freebsd.org/changeset/base/314070

Log:
  [iwm] Fix typo in commit a7697ea01c11fd493aec52260a02f31df680eb91.
  
  * The sc->sc_uc.uc_error_event_table value is now at sc->error_event_table,
    and not sc->umac_error_event_table.
  
  Obtained from:	dragonflybsd.git 612855b1a8c321ec9ba34f63edf913e7ecff8363

Modified:
  head/sys/dev/iwm/if_iwm.c

Modified: head/sys/dev/iwm/if_iwm.c
==============================================================================
--- head/sys/dev/iwm/if_iwm.c	Wed Feb 22 02:49:57 2017	(r314069)
+++ head/sys/dev/iwm/if_iwm.c	Wed Feb 22 02:51:30 2017	(r314070)
@@ -5410,7 +5410,7 @@ iwm_nic_error(struct iwm_softc *sc)
 	uint32_t base;
 
 	device_printf(sc->sc_dev, "dumping device error log\n");
-	base = sc->umac_error_event_table;
+	base = sc->error_event_table;
 	if (base < 0x800000) {
 		device_printf(sc->sc_dev,
 		    "Invalid error log pointer 0x%08x\n", base);


More information about the svn-src-head mailing list