Commit 47124373 authored by Axel Lin's avatar Axel Lin Committed by Takashi Iwai

ALSA: keywest: Remove obsolete cleanup for clientdata

The i2c core will clear the clientdata pointer automatically.
We don't have to set the `data' field to NULL in remove() or
if probe() failed anymore.
Signed-off-by: default avatarAxel Lin <axel.lin@gmail.com>
Reviewed-by: default avatarWolfram Sang <w.sang@pengutronix.de>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 57589603
...@@ -82,7 +82,6 @@ static int keywest_attach_adapter(struct i2c_adapter *adapter) ...@@ -82,7 +82,6 @@ static int keywest_attach_adapter(struct i2c_adapter *adapter)
static int keywest_remove(struct i2c_client *client) static int keywest_remove(struct i2c_client *client)
{ {
i2c_set_clientdata(client, NULL);
if (! keywest_ctx) if (! keywest_ctx)
return 0; return 0;
if (client == keywest_ctx->client) if (client == keywest_ctx->client)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment