summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorStefan Weil <sw@weilnetz.de>2014-07-07 21:05:30 +0200
committerMichael Tokarev <mjt@tls.msk.ru>2014-07-18 17:45:37 +0400
commitb9b45b4a88df949ab3780ecf7abca55e66ae05d1 (patch)
tree29e3ddd0e7e5e0227dce2ddf3ab0378d79df41ce
parent37cbfcce1426e9b53cd235d2c7f9f6740f4c467c (diff)
downloadfocaccia-qemu-b9b45b4a88df949ab3780ecf7abca55e66ae05d1.tar.gz
focaccia-qemu-b9b45b4a88df949ab3780ecf7abca55e66ae05d1.zip
hw/usb: Add missing 'static' attribute
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
-rw-r--r--hw/usb/hcd-ohci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/usb/hcd-ohci.c b/hw/usb/hcd-ohci.c
index cace945844..13afdf5919 100644
--- a/hw/usb/hcd-ohci.c
+++ b/hw/usb/hcd-ohci.c
@@ -2021,7 +2021,7 @@ static const VMStateDescription vmstate_ohci_eof_timer = {
     },
 };
 
-const VMStateDescription vmstate_ohci_state = {
+static const VMStateDescription vmstate_ohci_state = {
     .name = "ohci-core",
     .version_id = 1,
     .minimum_version_id = 1,