[MIPS] Yosemite: Fix missing parens in SERIAL_READ_1 macro
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
parent
c55197eb54
commit
d390008ebf
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@
|
||||||
* Functions to READ and WRITE to serial port 1
|
* Functions to READ and WRITE to serial port 1
|
||||||
*/
|
*/
|
||||||
#define SERIAL_READ_1(ofs) (*((volatile unsigned char*) \
|
#define SERIAL_READ_1(ofs) (*((volatile unsigned char*) \
|
||||||
(TITAN_SERIAL_BASE_1 + ofs)
|
(TITAN_SERIAL_BASE_1 + ofs)))
|
||||||
|
|
||||||
#define SERIAL_WRITE_1(ofs, val) ((*((volatile unsigned char*) \
|
#define SERIAL_WRITE_1(ofs, val) ((*((volatile unsigned char*) \
|
||||||
(TITAN_SERIAL_BASE_1 + ofs))) = val)
|
(TITAN_SERIAL_BASE_1 + ofs))) = val)
|
||||||
|
|
Loading…
Reference in a new issue