The return for debugfs API got changed. The fix here is to fix the return check for IPA GSB debugfs init. Change-Id: I4c6e97c612592763ceab66abdee99d7761c9c164
@@ -209,7 +209,7 @@ static void ipa_gsb_debugfs_init(void)
const mode_t read_only_mode = 00444;
dent = debugfs_create_dir("ipa_gsb", NULL);
- if (IS_ERR(dent)) {
+ if (!dent) {
IPA_GSB_ERR("fail to create folder ipa_gsb\n");
return;
}