]> Git Repo - linux.git/commitdiff
ALSA: aoa: Remove wrong i2c_set_clientdata in onyx_i2c_remove()
authorAxel Lin <[email protected]>
Fri, 10 Dec 2010 09:34:26 +0000 (17:34 +0800)
committerTakashi Iwai <[email protected]>
Fri, 10 Dec 2010 11:15:05 +0000 (12:15 +0100)
It does not make sense to set clientdata to onyx in onyx_i2c_remove()
as we are going to kfree onyx.
What we really want here is i2c_set_clientdata(client, NULL);
Since the i2c core will take care of it now, so this patch just removes it.

Signed-off-by: Axel Lin <[email protected]>
Signed-off-by: Takashi Iwai <[email protected]>
sound/aoa/codecs/onyx.c

index 91852e49910e24d9bee395e7dea36277edd08922..3687a6cc9881edf17a0e4e9ba8966d840c6cff79 100644 (file)
@@ -1114,7 +1114,6 @@ static int onyx_i2c_remove(struct i2c_client *client)
        of_node_put(onyx->codec.node);
        if (onyx->codec_info)
                kfree(onyx->codec_info);
-       i2c_set_clientdata(client, onyx);
        kfree(onyx);
        return 0;
 }
This page took 0.061199 seconds and 4 git commands to generate.