pw_bluetooth_sapphire: Update name of ISO host support bit

Change name of kIsochronousChannels bit in the LE feature bits to
kConnectedIsochronousStreamHostSupport, to more closely match the
name in the Core spec.

Bug: b/311639040
Test: Builds
Change-Id: I34231b3e6e411a3a2eb9e8de9e0149b62909dd79
Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/184051
Reviewed-by: Ben Lawson <benlawson@google.com>
Commit-Queue: Josh Conner <joshconner@google.com>
diff --git a/pw_bluetooth_sapphire/public/pw_bluetooth_sapphire/internal/host/hci-spec/constants.h b/pw_bluetooth_sapphire/public/pw_bluetooth_sapphire/internal/host/hci-spec/constants.h
index 6dfcdd1..45f5826 100644
--- a/pw_bluetooth_sapphire/public/pw_bluetooth_sapphire/internal/host/hci-spec/constants.h
+++ b/pw_bluetooth_sapphire/public/pw_bluetooth_sapphire/internal/host/hci-spec/constants.h
@@ -640,14 +640,14 @@
   kRemotePublicKeyValidation                = (1 << 27),
 
   // Added in 5.2
-  kConnectedIsochronousStreamCentral    = (1 << 28),
-  kConnectedIsochronousStreamPeripheral = (1 << 29),
-  kIsochronousBoradcaster               = (1 << 30),
-  kSynchronizedReceiver                 = (1ul << 31),
-  kIsochronousChannels                  = (1ul << 32),
-  kLEPowerControlRequest                = (1ul << 33),
-  kLEPowerChangeIndication              = (1ul << 34),
-  kLEPathLossMonitoring                 = (1ul << 35),
+  kConnectedIsochronousStreamCentral     = (1 << 28),
+  kConnectedIsochronousStreamPeripheral  = (1 << 29),
+  kIsochronousBoradcaster                = (1 << 30),
+  kSynchronizedReceiver                  = (1ul << 31),
+  kConnectedIsochronousStreamHostSupport = (1ul << 32),
+  kLEPowerControlRequest                 = (1ul << 33),
+  kLEPowerChangeIndication               = (1ul << 34),
+  kLEPathLossMonitoring                  = (1ul << 35),
 
   // The rest is reserved for future use.
 };