svn commit: r312383 - head/sys/dev/e1000

Sean Bruno sbruno at FreeBSD.org
Wed Jan 18 14:23:45 UTC 2017


Author: sbruno
Date: Wed Jan 18 14:23:43 2017
New Revision: 312383
URL: https://svnweb.freebsd.org/changeset/base/312383

Log:
  ugh, device_t not device_t *
  
  Reported by:	hps

Modified:
  head/sys/dev/e1000/if_em.h

Modified: head/sys/dev/e1000/if_em.h
==============================================================================
--- head/sys/dev/e1000/if_em.h	Wed Jan 18 14:14:00 2017	(r312382)
+++ head/sys/dev/e1000/if_em.h	Wed Jan 18 14:23:43 2017	(r312383)
@@ -436,7 +436,7 @@ struct adapter {
 #define intr_type shared->isc_intr
 	/* FreeBSD operating-system-specific structures. */
 	struct e1000_osdep osdep;
-	device_t	*dev;
+	device_t	dev;
 	struct cdev	*led_dev;
 
         struct em_tx_queue *tx_queues;


More information about the svn-src-all mailing list