diff options
author | Stefan Weil <sw@weilnetz.de> | 2014-07-07 21:05:30 +0200 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2014-07-18 17:45:37 +0400 |
commit | b9b45b4a88df949ab3780ecf7abca55e66ae05d1 (patch) | |
tree | 29e3ddd0e7e5e0227dce2ddf3ab0378d79df41ce | |
parent | 37cbfcce1426e9b53cd235d2c7f9f6740f4c467c (diff) | |
download | qemu-b9b45b4a88df949ab3780ecf7abca55e66ae05d1.tar.gz qemu-b9b45b4a88df949ab3780ecf7abca55e66ae05d1.tar.bz2 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.c | 2 |
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, |