Add missing 'break' that in this case is harmless.

This commit is contained in:
John Baldwin 2007-02-14 17:02:15 +00:00
parent d82080b4cd
commit 8474d26b81

View File

@ -585,6 +585,7 @@ pci_read_extcap(device_t pcib, pcicfgregs *cfg)
cfg->subvendor = val & 0xffff;
cfg->subdevice = val >> 16;
}
break;
default:
break;
}