소스 검색

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 4 년 전
부모
커밋
3e2e6fd4e7
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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;
 }