diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2012-07-14 10:58:22 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2012-07-14 10:58:22 +0000 |
commit | 39a4ef1be680d7e60ee3a1cf6ff328dba0326365 (patch) | |
tree | 4595c3698cdf7b25af89fa343585bf70a4d00982 /hw | |
parent | 9aa0ff0bf9588f86846d1045662f5d75b91552cb (diff) | |
parent | 8f67aa8265b7aef104ffab6431048dec8d5656c7 (diff) |
Merge branch 'trivial-patches' of git://github.com/stefanha/qemu
* 'trivial-patches' of git://github.com/stefanha/qemu:
make: Remove 'build-all' rule
qemu-keymaps: Finnish keyboard mapping broken
vnc: add a more descriptive error message
bitops: Fix documentation
megasas: mark mfi_frame_desc as 'static'
Diffstat (limited to 'hw')
-rw-r--r-- | hw/megasas.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/megasas.c b/hw/megasas.c index b48836fff1..b99fa9792e 100644 --- a/hw/megasas.c +++ b/hw/megasas.c @@ -45,7 +45,7 @@ #define MEGASAS_FLAG_USE_QUEUE64 2 #define MEGASAS_MASK_USE_QUEUE64 (1 << MEGASAS_FLAG_USE_QUEUE64) -const char *mfi_frame_desc[] = { +static const char *mfi_frame_desc[] = { "MFI init", "LD Read", "LD Write", "LD SCSI", "PD SCSI", "MFI Doorbell", "MFI Abort", "MFI SMP", "MFI Stop"}; |