qcacmn: Fix a mismatched parameter type

Function qdf_debugfs_create_entry's last parameter should be
qdf_file_ops_t, not qdf_file_ops_t *.

Change-Id: I847a05b81944562808c29a42b176c822639509ba
CRs-Fixed: 2864863
This commit is contained in:
wadesong
2021-01-27 18:04:54 +08:00
committed by snandini
parent ec2e7778ea
commit 3e2e6fd4e7

View File

@@ -422,7 +422,7 @@ static inline
qdf_dentry_t qdf_debugfs_create_entry(const char *name, uint16_t mode,
qdf_dentry_t parent,
qdf_entry_t data,
const qdf_file_ops_t *fops)
const qdf_file_ops_t fops)
{
return NULL;
}