Explorar o código

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
wadesong %!s(int64=4) %!d(string=hai) anos
pai
achega
3e2e6fd4e7
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      qdf/inc/qdf_debugfs.h

+ 1 - 1
qdf/inc/qdf_debugfs.h

@@ -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;
 }