Skip to content

Commit

Permalink
fix EMAC driver for proper napi_synchronize API
Browse files Browse the repository at this point in the history
The EMAC driver "fix" was merged by mistake before the dust had settled on
the new napi synchronize interface (and before it got merged). The final
version of that function is spelled without underscores.

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
  • Loading branch information
Benjamin Herrenschmidt authored and Jeff Garzik committed Oct 18, 2007
1 parent 6de1623 commit e30d422
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/ibm_newemac/mal.c
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ void mal_poll_disable(struct mal_instance *mal, struct mal_commac *commac)
msleep(1);

/* Synchronize with the MAL NAPI poller */
__napi_synchronize(&mal->napi);
napi_synchronize(&mal->napi);
}

void mal_poll_enable(struct mal_instance *mal, struct mal_commac *commac)
Expand Down

0 comments on commit e30d422

Please sign in to comment.