]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
Bluetooth: btintel_pci: Fix btintel_pcie_read_hwexp code style
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
Mon, 2 Mar 2026 20:21:21 +0000 (15:21 -0500)
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
Fri, 10 Apr 2026 14:30:01 +0000 (10:30 -0400)
Use proper alignment for break under a switch.

Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
drivers/bluetooth/btintel_pcie.c

index a817a571f7205b499a839d0ac24e6023d52241fe..05f82bc3f0d7839e0a79ff5f9776e31a03533175 100644 (file)
@@ -1233,16 +1233,16 @@ static void btintel_pcie_read_hwexp(struct btintel_pcie_data *data)
                        return;
                len = BTINTEL_PCIE_BLZR_HWEXP_SIZE; /* exception data length */
                addr = BTINTEL_PCIE_BLZR_HWEXP_DMP_ADDR;
-       break;
+               break;
        case BTINTEL_CNVI_SCP:
                len = BTINTEL_PCIE_SCP_HWEXP_SIZE;
                addr = BTINTEL_PCIE_SCP_HWEXP_DMP_ADDR;
-       break;
+               break;
        case BTINTEL_CNVI_SCP2:
        case BTINTEL_CNVI_SCP2F:
                len = BTINTEL_PCIE_SCP2_HWEXP_SIZE;
                addr = BTINTEL_PCIE_SCP2_HWEXP_DMP_ADDR;
-       break;
+               break;
        default:
                bt_dev_err(data->hdev, "Unsupported cnvi 0x%8.8x", data->dmp_hdr.cnvi_top);
                return;