aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Huth <thuth@linux.vnet.ibm.com>2011-08-12 15:58:00 +0200
committerThomas Huth <thuth@linux.vnet.ibm.com>2011-10-12 16:24:55 +0200
commit7c3b65d835c41e89902772bb1e81d3bacebb75c9 (patch)
tree8c1e01ebcfb394766568b14acedf986aa79daa26
parent946628710f4269382aa85eecc0d5e902fb77a10d (diff)
downloadSLOF-7c3b65d835c41e89902772bb1e81d3bacebb75c9.zip
SLOF-7c3b65d835c41e89902772bb1e81d3bacebb75c9.tar.gz
SLOF-7c3b65d835c41e89902772bb1e81d3bacebb75c9.tar.bz2
USB: Fixed the size of the keyboard report descriptors
Size of the keyboard report descriptors is only 0x3f instead of 0x40... ...and qemu is picky about this right size. Signed-off-by: Thomas Huth <thuth@linux.vnet.ibm.com>
-rw-r--r--slof/fs/usb/usb-kbd-device-support.fs4
1 files changed, 2 insertions, 2 deletions
diff --git a/slof/fs/usb/usb-kbd-device-support.fs b/slof/fs/usb/usb-kbd-device-support.fs
index 9fa4236..8dbd981 100644
--- a/slof/fs/usb/usb-kbd-device-support.fs
+++ b/slof/fs/usb/usb-kbd-device-support.fs
@@ -92,10 +92,10 @@ to kbd-addr
0 kbd-addr control-cls-set-idle drop \ set idle
s" KBDS: Set idle returned" usb-debug-print
- cfg-buffer 40 8 kbd-addr \ get report descriptor
+ cfg-buffer 3f 8 kbd-addr \ get report descriptor
control-std-get-report-descriptor
drop
- \ s" report_desc=" type cfg-buffer 40 dump cr
+ \ s" report_desc=" type cfg-buffer 3f dump cr
s" Finished initializing keyboard" usb-debug-print
;