diff options
Diffstat (limited to 'src/device')
-rw-r--r-- | src/device/device.c | 2 | ||||
-rw-r--r-- | src/device/pci_device.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/device/device.c b/src/device/device.c index e068cee044..00e323a668 100644 --- a/src/device/device.c +++ b/src/device/device.c @@ -179,7 +179,7 @@ device_t alloc_find_dev(struct bus *parent, struct device_path *path) * Round a number up to an alignment. * * @param val The starting value. - * @param roundup Alignment as a power of two. + * @param pow Alignment as a power of two. * @return Rounded up number. */ static resource_t round(resource_t val, unsigned long pow) diff --git a/src/device/pci_device.c b/src/device/pci_device.c index 8351e9ca63..22454d631f 100644 --- a/src/device/pci_device.c +++ b/src/device/pci_device.c @@ -1321,7 +1321,7 @@ const char *pin_to_str(int pin) * device. In this case, this function will return 4 (PIN D). * * @param dev A PCI device structure to swizzle interrupt pins for - * @param *parent_bdg The PCI device structure for the bridge + * @param *parent_bridge The PCI device structure for the bridge * device 'dev' is attached to * @return The interrupt pin number (1 - 4) that 'dev' will * trigger when generating an interrupt |