Skip to content

Commit f99e6aa

Browse files
UtsavBalar1231DhineshCool
authored andcommitted
Fix compilation with Google clang 15.0.2
1 parent f71c947 commit f99e6aa

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

drivers/input/touchscreen/stm/fts_lib/ftsIO.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ struct device *getDev(void)
112112
* slave
113113
* @return client if it was previously set or NULL in all the other cases
114114
*/
115-
struct i2c_client *getClient()
115+
struct i2c_client *getClient(void)
116116
{
117117
if (client != NULL)
118118
return (struct i2c_client *)client;

drivers/staging/qcacld-3.0/core/hdd/src/wlan_hdd_main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6685,7 +6685,7 @@ QDF_STATUS hdd_post_cds_enable_config(hdd_context_t *hdd_ctx)
66856685
return QDF_STATUS_SUCCESS;
66866686
}
66876687

6688-
hdd_adapter_t *hdd_get_first_valid_adapter()
6688+
hdd_adapter_t *hdd_get_first_valid_adapter(void)
66896689
{
66906690
hdd_adapter_list_node_t *adapterNode = NULL, *pNext = NULL;
66916691
hdd_adapter_t *adapter;

drivers/staging/qcacld-3.0/core/mac/src/include/parser_api.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1108,7 +1108,7 @@ tSirRetStatus populate_dot11f_rrm_ie(tpAniSirGlobal pMac,
11081108
tpPESession psessionEntry);
11091109

11101110
void populate_mdie(tpAniSirGlobal pMac,
1111-
tDot11fIEMobilityDomain * pDot11f, uint8_t mdie[]);
1111+
tDot11fIEMobilityDomain * pDot11f, uint8_t mdie[SIR_MDIE_SIZE]);
11121112
void populate_ft_info(tpAniSirGlobal pMac, tDot11fIEFTInfo *pDot11f);
11131113

11141114
void populate_dot11f_assoc_rsp_rates(tpAniSirGlobal pMac,

0 commit comments

Comments
 (0)