1
0
Fork 0

[SPARC]: envctrl: ERR_PTR() --> PTR_ERR()

Fix thinko in Christoph's changes.

Signed-off-by: David S. Miller <davem@davemloft.net>
wifi-calibration
David S. Miller 2005-08-09 14:43:14 -07:00
parent 4875ccdb30
commit 38c1844b31
1 changed files with 1 additions and 1 deletions

View File

@ -1117,7 +1117,7 @@ done:
kenvctrld_task = kthread_run(kenvctrld, NULL, "kenvctrld");
if (IS_ERR(kenvctrld_task)) {
err = ERR_PTR(kenvctrld_task);
err = PTR_ERR(kenvctrld_task);
goto out_deregister;
}