summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2026-03-02 23:21:21 +0300
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2026-04-10 17:30:01 +0300
commit15a315e4172b1dfd78f1d1ed62808a2c968d5a7b (patch)
tree07035ca67e7e214ec9c40fe648d74a01849de082
parent5741118b5da398f3864be04044de975aa154af1d (diff)
downloadlinux-15a315e4172b1dfd78f1d1ed62808a2c968d5a7b.tar.xz
Bluetooth: btintel_pci: Fix btintel_pcie_read_hwexp code style
Use proper alignment for break under a switch. Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
-rw-r--r--drivers/bluetooth/btintel_pcie.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/bluetooth/btintel_pcie.c b/drivers/bluetooth/btintel_pcie.c
index a817a571f720..05f82bc3f0d7 100644
--- a/drivers/bluetooth/btintel_pcie.c
+++ b/drivers/bluetooth/btintel_pcie.c
@@ -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;