svn commit: r304562 - stable/11/sys/arm/allwinner

Emmanuel Vadot manu at FreeBSD.org
Sun Aug 21 15:45:13 UTC 2016


Author: manu
Date: Sun Aug 21 15:45:12 2016
New Revision: 304562
URL: https://svnweb.freebsd.org/changeset/base/304562

Log:
  MFC r304077:
  
  Correct the size of the softc in a10_ehci
  
  Reported by:	andrew

Modified:
  stable/11/sys/arm/allwinner/a10_ehci.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/arm/allwinner/a10_ehci.c
==============================================================================
--- stable/11/sys/arm/allwinner/a10_ehci.c	Sun Aug 21 15:41:19 2016	(r304561)
+++ stable/11/sys/arm/allwinner/a10_ehci.c	Sun Aug 21 15:45:12 2016	(r304562)
@@ -360,7 +360,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