From 6d265ca31d0640dd664b1318a5b03b98a06d57ca Mon Sep 17 00:00:00 2001 From: NyeonWoo Kim Date: Sun, 21 Sep 2025 14:47:29 +0900 Subject: [PATCH] device/pci_device: Fix typo in comments I found a typo in the comments, so I fixed it. It seems that 'this operations' is a typographical error. Change-Id: Ic272e122ce180dee8c0516ecea27cd10932c2363 Signed-off-by: NyeonWoo Kim Reviewed-on: https://review.coreboot.org/c/coreboot/+/89282 Tested-by: build bot (Jenkins) Reviewed-by: Matt DeVillier --- src/device/pci_device.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/device/pci_device.c b/src/device/pci_device.c index baa7a48ff9..202e8b5055 100644 --- a/src/device/pci_device.c +++ b/src/device/pci_device.c @@ -1156,13 +1156,13 @@ struct device *pci_probe_dev(struct device *dev, struct bus *bus, } else { /* * Enable/disable the device. Once we have found the device- - * specific operations this operations we will disable the - * device with those as well. + * specific operations, we will disable the device + * with those as well. * * This is geared toward devices that have subfunctions * that do not show up by default. * - * If a device is a stuff option on the motherboard + * If a device is a stuff option on the motherboard, * it may be absent and enable_dev() must cope. */ /* Run the magic enable sequence for the device. */