svn commit: r304077 - head/sys/arm/allwinner

Emmanuel Vadot manu at FreeBSD.org
Sun Aug 14 13:18:01 UTC 2016


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;


More information about the svn-src-all mailing list