diff options
-rw-r--r-- | src/southbridge/amd/amd8111/amd8111_usb2.c | 2 | ||||
-rw-r--r-- | util/abuild/abuild.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/southbridge/amd/amd8111/amd8111_usb2.c b/src/southbridge/amd/amd8111/amd8111_usb2.c index 1bec894ac8..459bf8a68b 100644 --- a/src/southbridge/amd/amd8111/amd8111_usb2.c +++ b/src/southbridge/amd/amd8111/amd8111_usb2.c @@ -24,7 +24,7 @@ static struct pci_operations lops_pci = { static void amd8111_usb2_enable(device_t dev) { // Due to buggy USB2 we force it to disable. - dev->enable = 0; + dev->enabled = 0; amd8111_enable(dev); printk_debug("USB2 disabled.\n"); } diff --git a/util/abuild/abuild.sh b/util/abuild/abuild.sh index 0dc89223ba..48f11c71a9 100644 --- a/util/abuild/abuild.sh +++ b/util/abuild/abuild.sh @@ -82,14 +82,14 @@ EOF cat <<EOF romimage "normal" option USE_FALLBACK_IMAGE=0 - option ROM_IMAGE_SIZE=0x15000 + option ROM_IMAGE_SIZE=0x18000 option LINUXBIOS_EXTRA_VERSION=".0-normal" payload PAYLOAD end romimage "fallback" option USE_FALLBACK_IMAGE=1 - option ROM_IMAGE_SIZE=0x15000 + option ROM_IMAGE_SIZE=0x18000 option LINUXBIOS_EXTRA_VERSION=".0-fallback" payload PAYLOAD end |