Commit 42b565df authored by Wolfram Sang's avatar Wolfram Sang Committed by Greg Kroah-Hartman

staging/olpc_dcon: Remove obsolete cleanup for clientdata

A few new i2c-drivers came into the kernel which clear the clientdata-pointer
on exit or error. This is obsolete meanwhile, the core will do it.
Signed-off-by: default avatarWolfram Sang <w.sang@pengutronix.de>
Acked-by: default avatarAndres Salomon <dilinger@queued.net>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Marek Belisko <marek.belisko@open-nandra.com>
Acked-by: default avatarJean Delvare <khali@linux-fr.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 1c2de3e7
...@@ -697,7 +697,6 @@ static int dcon_probe(struct i2c_client *client, const struct i2c_device_id *id) ...@@ -697,7 +697,6 @@ static int dcon_probe(struct i2c_client *client, const struct i2c_device_id *id)
eirq: eirq:
free_irq(DCON_IRQ, dcon); free_irq(DCON_IRQ, dcon);
einit: einit:
i2c_set_clientdata(client, NULL);
kfree(dcon); kfree(dcon);
return rc; return rc;
} }
...@@ -706,8 +705,6 @@ static int dcon_remove(struct i2c_client *client) ...@@ -706,8 +705,6 @@ static int dcon_remove(struct i2c_client *client)
{ {
struct dcon_priv *dcon = i2c_get_clientdata(client); struct dcon_priv *dcon = i2c_get_clientdata(client);
i2c_set_clientdata(client, NULL);
fb_unregister_client(&dcon->fbevent_nb); fb_unregister_client(&dcon->fbevent_nb);
unregister_reboot_notifier(&dcon->reboot_nb); unregister_reboot_notifier(&dcon->reboot_nb);
atomic_notifier_chain_unregister(&panic_notifier_list, &dcon_panic_nb); atomic_notifier_chain_unregister(&panic_notifier_list, &dcon_panic_nb);
......
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