Author: manu
Date: Sun Aug 14 13:17:59 2016
New Revision: 304077
URL: https://svnweb.freebsd.org/changeset/base/304077

Log:
  Correct the size of the softc in a10_ehci
  
  Reported by:  andrew
  MFC after:    1 week

Modified:
  head/sys/arm/allwinner/a10_ehci.c

Modified: head/sys/arm/allwinner/a10_ehci.c
==============================================================================
--- head/sys/arm/allwinner/a10_ehci.c   Sun Aug 14 13:17:55 2016        
(r304076)
+++ head/sys/arm/allwinner/a10_ehci.c   Sun Aug 14 13:17:59 2016        
(r304077)
@@ -358,7 +358,7 @@ static device_method_t ehci_methods[] = 
 static driver_t ehci_driver = {
        .name = "ehci",
        .methods = ehci_methods,
-       .size = sizeof(ehci_softc_t),
+       .size = sizeof(struct aw_ehci_softc),
 };
 
 static devclass_t ehci_devclass;
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to