Commit c8ddc220 authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman

staging: olpc_dcon: remove use of __devexit_p

CONFIG_HOTPLUG is going away as an option so __devexit_p is no longer
needed.
Signed-off-by: default avatarBill Pemberton <wfp5p@virginia.edu>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2c4ae9d2
......@@ -779,7 +779,7 @@ struct i2c_driver dcon_driver = {
.class = I2C_CLASS_DDC | I2C_CLASS_HWMON,
.id_table = dcon_idtable,
.probe = dcon_probe,
.remove = __devexit_p(dcon_remove),
.remove = dcon_remove,
.detect = dcon_detect,
.address_list = normal_i2c,
};
......
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