Merge "qcacmn: Fix compiler warning on shift overflow in QCA vendor definitions"

This commit is contained in:
Linux Build Service Account
2022-09-27 18:42:51 -07:00
committed by Gerrit - the friendly Code Review server

View File

@@ -3827,7 +3827,7 @@ enum qca_wlan_vendor_channel_prop_flags {
/* HE 40 with extension channel below */
QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_HE40MINUS = 1 << 30,
/* HE 40 intolerant */
QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_HE40INTOL = 1 << 31,
QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_HE40INTOL = 1U << 31,
};
/**