ath10k: fix checkpatch warnings related to spaces
Fix checkpatch warnings about use of spaces with operators: spaces preferred around that '*' (ctx:VxV) This has been recently added to checkpatch. Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
This commit is contained in:
@@ -405,8 +405,8 @@ static inline char *wmi_service_name(int service_id)
|
||||
|
||||
#define WMI_SERVICE_IS_ENABLED(wmi_svc_bmap, svc_id, len) \
|
||||
((svc_id) < (len) && \
|
||||
__le32_to_cpu((wmi_svc_bmap)[(svc_id)/(sizeof(u32))]) & \
|
||||
BIT((svc_id)%(sizeof(u32))))
|
||||
__le32_to_cpu((wmi_svc_bmap)[(svc_id) / (sizeof(u32))]) & \
|
||||
BIT((svc_id) % (sizeof(u32))))
|
||||
|
||||
#define SVCMAP(x, y, len) \
|
||||
do { \
|
||||
@@ -1309,7 +1309,7 @@ enum wmi_10x_event_id {
|
||||
WMI_10X_PDEV_TPC_CONFIG_EVENTID,
|
||||
|
||||
WMI_10X_GPIO_INPUT_EVENTID,
|
||||
WMI_10X_PDEV_UTF_EVENTID = WMI_10X_END_EVENTID-1,
|
||||
WMI_10X_PDEV_UTF_EVENTID = WMI_10X_END_EVENTID - 1,
|
||||
};
|
||||
|
||||
enum wmi_10_2_cmd_id {
|
||||
@@ -2042,8 +2042,8 @@ struct wmi_10x_service_ready_event {
|
||||
struct wlan_host_mem_req mem_reqs[0];
|
||||
} __packed;
|
||||
|
||||
#define WMI_SERVICE_READY_TIMEOUT_HZ (5*HZ)
|
||||
#define WMI_UNIFIED_READY_TIMEOUT_HZ (5*HZ)
|
||||
#define WMI_SERVICE_READY_TIMEOUT_HZ (5 * HZ)
|
||||
#define WMI_UNIFIED_READY_TIMEOUT_HZ (5 * HZ)
|
||||
|
||||
struct wmi_ready_event {
|
||||
__le32 sw_version;
|
||||
@@ -4389,14 +4389,14 @@ enum wmi_vdev_subtype_10_4 {
|
||||
/*
|
||||
* Indicates that AP VDEV uses hidden ssid. only valid for
|
||||
* AP/GO */
|
||||
#define WMI_VDEV_START_HIDDEN_SSID (1<<0)
|
||||
#define WMI_VDEV_START_HIDDEN_SSID (1 << 0)
|
||||
/*
|
||||
* Indicates if robust management frame/management frame
|
||||
* protection is enabled. For GO/AP vdevs, it indicates that
|
||||
* it may support station/client associations with RMF enabled.
|
||||
* For STA/client vdevs, it indicates that sta will
|
||||
* associate with AP with RMF enabled. */
|
||||
#define WMI_VDEV_START_PMF_ENABLED (1<<1)
|
||||
#define WMI_VDEV_START_PMF_ENABLED (1 << 1)
|
||||
|
||||
struct wmi_p2p_noa_descriptor {
|
||||
__le32 type_count; /* 255: continuous schedule, 0: reserved */
|
||||
@@ -5342,7 +5342,7 @@ enum wmi_sta_ps_param_pspoll_count {
|
||||
#define WMI_UAPSD_AC_TYPE_TRIG 1
|
||||
|
||||
#define WMI_UAPSD_AC_BIT_MASK(ac, type) \
|
||||
((type == WMI_UAPSD_AC_TYPE_DELI) ? (1<<(ac<<1)) : (1<<((ac<<1)+1)))
|
||||
((type == WMI_UAPSD_AC_TYPE_DELI) ? (1 << (ac << 1)) : (1 << ((ac << 1) + 1)))
|
||||
|
||||
enum wmi_sta_ps_param_uapsd {
|
||||
WMI_STA_PS_UAPSD_AC0_DELIVERY_EN = (1 << 0),
|
||||
@@ -5757,7 +5757,7 @@ struct wmi_rate_set {
|
||||
* the rates are filled from least significant byte to most
|
||||
* significant byte.
|
||||
*/
|
||||
__le32 rates[(MAX_SUPPORTED_RATES/4)+1];
|
||||
__le32 rates[(MAX_SUPPORTED_RATES / 4) + 1];
|
||||
} __packed;
|
||||
|
||||
struct wmi_rate_set_arg {
|
||||
|
Reference in New Issue
Block a user