dect
/
linux-2.6
Archived
13
0
Fork 0

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:
Magnus Damm 2008-04-23 21:37:39 +09:00 committed by Paul Mundt
parent 9b4e466f93
commit 3d2c2f3ef7
1 changed files with 1 additions and 1 deletions

View File

@ -321,7 +321,7 @@
unsigned int addr = port->mapbase + (offset); \
if ((size) == 8) { \
ctrl_outb(value, addr); \
} else { \
} else if ((size) == 16) { \
ctrl_outw(value, addr); \
}