svn commit: r299048 - head/sys/dev/lmc

Adrian Chadd adrian at FreeBSD.org
Wed May 4 06:23:50 UTC 2016


Author: adrian
Date: Wed May  4 06:23:49 2016
New Revision: 299048
URL: https://svnweb.freebsd.org/changeset/base/299048

Log:
  s/struct device */device_t/g
  
  Submitted by:	kmacy

Modified:
  head/sys/dev/lmc/if_lmc.h

Modified: head/sys/dev/lmc/if_lmc.h
==============================================================================
--- head/sys/dev/lmc/if_lmc.h	Wed May  4 06:22:41 2016	(r299047)
+++ head/sys/dev/lmc/if_lmc.h	Wed May  4 06:23:49 2016	(r299048)
@@ -1092,7 +1092,7 @@ struct softc
 #endif
 
   struct callout callout;	/* watchdog needs this                  */
-  struct device	*dev;		/* base device pointer                     */
+  device_t	dev;		/* base device pointer                     */
   bus_space_tag_t csr_tag;	/* bus_space needs this                    */
   bus_space_handle_t csr_handle;/* bus_space_needs this                    */
   void		*irq_cookie;	/* bus_teardown_intr needs this            */


More information about the svn-src-all mailing list