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:
@@ -422,7 +422,7 @@ static inline
|
|||||||
qdf_dentry_t qdf_debugfs_create_entry(const char *name, uint16_t mode,
|
qdf_dentry_t qdf_debugfs_create_entry(const char *name, uint16_t mode,
|
||||||
qdf_dentry_t parent,
|
qdf_dentry_t parent,
|
||||||
qdf_entry_t data,
|
qdf_entry_t data,
|
||||||
const qdf_file_ops_t *fops)
|
const qdf_file_ops_t fops)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user