Răsfoiți Sursa

msm: ipa: fix p1 compile errors

Fixing compile errors on LA.VENDOR.1.0.

Change-Id: I14bb7509bb6840a1ec2ce0ffa585d68bf8886b6b
Signed-off-by: Michael Adisumarta <[email protected]>
Michael Adisumarta 4 ani în urmă
părinte
comite
abf6caaf9d
1 a modificat fișierele cu 4 adăugiri și 6 ștergeri
  1. 4 6
      drivers/platform/msm/ipa/ipa_clients/ipa_eth.c

+ 4 - 6
drivers/platform/msm/ipa/ipa_clients/ipa_eth.c

@@ -200,13 +200,11 @@ static void ipa_eth_ready_notify_work(struct work_struct *work)
 		&ipa_eth_ctx->ready_cb_list, link) {
 		if (!entry)
 			break;
-		if (entry->info && entry->info->notify) {
+		if (entry->info && entry->info->notify)
 			entry->info->notify(entry->info->userdata);
-			/* remove from list once notify is done */
-			list_del(&entry->link);
-			kfree(entry);
-			break;
-		}
+		/* remove from list once notify is done */
+		list_del(&entry->link);
+		kfree(entry);
 	}
 	mutex_unlock(&ipa_eth_ctx->lock);
 }