1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-17 10:26:15 +00:00

Minor style nit.

This commit is contained in:
Warner Losh 2008-12-05 04:48:04 +00:00
parent f40b0e2e97
commit ca446278b1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=185624

View File

@ -1045,8 +1045,8 @@ cbb_cardbus_mem_open(device_t brdev, int win, uint32_t start, uint32_t end)
return (EINVAL);
}
basereg = win*8 + CBBR_MEMBASE0;
limitreg = win*8 + CBBR_MEMLIMIT0;
basereg = win * 8 + CBBR_MEMBASE0;
limitreg = win * 8 + CBBR_MEMLIMIT0;
pci_write_config(brdev, basereg, start, 4);
pci_write_config(brdev, limitreg, end, 4);