mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-03 12:35:02 +00:00
Fix an unparenthasized macro argument. md5s differ but this is likely
to order of operations that are actually fixed by the proper parenthasizing.
This commit is contained in:
parent
306ced0dd0
commit
a3f8cf2bbd
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=106705
@ -69,7 +69,7 @@ static int viapm_debug = 0;
|
||||
#define VIAPM_INB(port) \
|
||||
((u_char)bus_space_read_1(viapm->st, viapm->sh, port))
|
||||
#define VIAPM_OUTB(port,val) \
|
||||
(bus_space_write_1(viapm->st, viapm->sh, port, (u_char)val))
|
||||
(bus_space_write_1(viapm->st, viapm->sh, port, (u_char)(val)))
|
||||
|
||||
#define VIAPM_TYP_UNKNOWN 0
|
||||
#define VIAPM_TYP_586B_3040E 1
|
||||
|
Loading…
Reference in New Issue
Block a user