summaryrefslogtreecommitdiffstats
path: root/src/device/pci_device.c
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2021-01-07 06:14:27 +0000
committerPatrick Georgi <pgeorgi@google.com>2021-01-12 13:33:59 +0000
commitc96ee7e2637f06e3df9c4fcd67fc26edbc555fc1 (patch)
tree310549bfd697e81229fc943f1152e288a63e28e9 /src/device/pci_device.c
parent5f875e26c69fee0ed49e7d2f8f6a239f2694daa8 (diff)
downloadcoreboot-c96ee7e2637f06e3df9c4fcd67fc26edbc555fc1.tar.gz
coreboot-c96ee7e2637f06e3df9c4fcd67fc26edbc555fc1.tar.bz2
coreboot-c96ee7e2637f06e3df9c4fcd67fc26edbc555fc1.zip
device/pci_device.c: Use same indents for switch/case
Use same indents for switch/case to fix linter issues. Change-Id: I5c6abf5b918bac3df8d7617824392f2ec932cb32 Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/49205 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/device/pci_device.c')
-rw-r--r--src/device/pci_device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device/pci_device.c b/src/device/pci_device.c
index a7eb91d42d17..f41689e24aa7 100644
--- a/src/device/pci_device.c
+++ b/src/device/pci_device.c
@@ -967,7 +967,7 @@ static void set_pci_ops(struct device *dev)
dev->ops = &default_cardbus_ops_bus;
break;
#endif
-default:
+ default:
bad:
if (dev->enabled) {
printk(BIOS_ERR, "%s [%04x/%04x/%06x] has unknown "