22 lines
603 B
Diff
22 lines
603 B
Diff
|
# Commit 815dc9f1dba5782dcef77d8a002a11f5b1e5cc37
|
||
|
# Date 2014-04-23 15:07:11 +0200
|
||
|
# Author Jan Beulich <jbeulich@suse.com>
|
||
|
# Committer Jan Beulich <jbeulich@suse.com>
|
||
|
x86: add missing break in dom0_pit_access()
|
||
|
|
||
|
Coverity ID 1203045
|
||
|
|
||
|
Signed-off-by: Jan Beulich <jbeulich@suse.com>
|
||
|
Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>
|
||
|
|
||
|
--- a/xen/arch/x86/time.c
|
||
|
+++ b/xen/arch/x86/time.c
|
||
|
@@ -1632,6 +1632,7 @@ int dom0_pit_access(struct ioreq *ioreq)
|
||
|
outb(ioreq->data, PIT_MODE);
|
||
|
return 1;
|
||
|
}
|
||
|
+ break;
|
||
|
|
||
|
case 0x61:
|
||
|
if ( ioreq->dir == IOREQ_READ )
|