sh-sci: avoid writing to nonexistent registers
Only write to hardware in SCI_OUT() if the register size is valid. Signed-off-by: Magnus Damm <damm@igel.co.jp> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
@@ -321,7 +321,7 @@
|
|||||||
unsigned int addr = port->mapbase + (offset); \
|
unsigned int addr = port->mapbase + (offset); \
|
||||||
if ((size) == 8) { \
|
if ((size) == 8) { \
|
||||||
ctrl_outb(value, addr); \
|
ctrl_outb(value, addr); \
|
||||||
} else { \
|
} else if ((size) == 16) { \
|
||||||
ctrl_outw(value, addr); \
|
ctrl_outw(value, addr); \
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user