Correct the size of the softc in a10_ehci

Reported by:	andrew
MFC after:	1 week
This commit is contained in:
Emmanuel Vadot 2016-08-14 13:17:59 +00:00
parent c5e85276ac
commit 29f11c7d8b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=304077

View File

@ -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;