staging: olpc_dcon: remove use of __devexit_p
authorBill Pemberton <wfp5p@virginia.edu>
Mon, 19 Nov 2012 18:21:32 +0000 (13:21 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 21 Nov 2012 23:05:00 +0000 (15:05 -0800)
CONFIG_HOTPLUG is going away as an option so __devexit_p is no longer
needed.

Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/olpc_dcon/olpc_dcon.c

index 3fe209ca38cb3ffff839d2c7ea2e8139baa439ac..54ed6f69e3d47fa4a3c19b9bfa202f422f4d8f8a 100644 (file)
@@ -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,
 };