On Sat, Jun 16, 2018 at 11:57:13AM +0530, Balakrishna Godavarthi wrote: > Some of the QCA BTSoC ROME functions, are used for different versions > or different make of BTSoC's. Instead of duplicating the same functions > for new chip, updating names of the functions that are used for both > chip's to keep this generic and would help in future when we would have > new BT SoC. > > Signed-off-by: Balakrishna Godavarthi <bgodavar@xxxxxxxxxxxxxx> > --- > > Changes in v7: > * updated the all the functions of ROME to generic. > > Changes in v6: > * initial patch > * updated names of functions that are used for both the chips to > keep this generic and would help in future when we would have > new BT SoC. > > --- As per my comment on "[2/8] Bluetooth: btqca: Rename string ROME to QCA in logs.", it would probably make sense to squash these two patches. > diff --git a/drivers/bluetooth/btqca.h b/drivers/bluetooth/btqca.h > index 13d77fd873b6..d0ee96540636 100644 > --- a/drivers/bluetooth/btqca.h > +++ b/drivers/bluetooth/btqca.h > @@ -37,7 +37,7 @@ > #define EDL_TAG_ID_HCI (17) > #define EDL_TAG_ID_DEEP_SLEEP (27) > > -enum qca_bardrate { > +enum qca_baudrate { > QCA_BAUDRATE_115200 = 0, > QCA_BAUDRATE_57600, > QCA_BAUDRATE_38400, This is a bit sneaky, it is not related with the change nor mentioned in the commit message. It is certainly a welcome change, but should be done in a separate patch (not necessarily in this series). The fact that only the enum declaration needs to be fixed indicates that the enum isn't used for variables/paramters/return values of this type. Also beyond the scope of this series, but using the enum type instead of int types would be another possible future improvement. -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html