mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-22 15:47:37 +00:00
Add missed parentheses
This commit is contained in:
parent
83660cf974
commit
ea39de9f93
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=177137
@ -180,7 +180,7 @@ k6_mem_drvinit(void *unused)
|
||||
if ((cpu_id & 0xf00) != 0x500)
|
||||
return;
|
||||
if ((cpu_id & 0xf0) < 0x80 ||
|
||||
(cpu_id & 0xf0) == 0x80 && (cpu_id & 0xf) <= 0x7)
|
||||
((cpu_id & 0xf0) == 0x80 && (cpu_id & 0xf) <= 0x7))
|
||||
return;
|
||||
mem_range_softc.mr_op = &k6_mrops;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user