Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 14 Aug 2016 13:18:00 +0000 (UTC)
From:      Emmanuel Vadot <manu@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r304077 - head/sys/arm/allwinner
Message-ID:  <201608141318.u7EDI0lS016446@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201608141318.u7EDI0lS016446>