|
@@ -64,7 +64,7 @@ static int rpmsg_sample_probe(struct rpmsg_channel *rpdev)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static void __devexit rpmsg_sample_remove(struct rpmsg_channel *rpdev)
|
|
|
+static void rpmsg_sample_remove(struct rpmsg_channel *rpdev)
|
|
|
{
|
|
|
dev_info(&rpdev->dev, "rpmsg sample client driver is removed\n");
|
|
|
}
|
|
@@ -81,7 +81,7 @@ static struct rpmsg_driver rpmsg_sample_client = {
|
|
|
.id_table = rpmsg_driver_sample_id_table,
|
|
|
.probe = rpmsg_sample_probe,
|
|
|
.callback = rpmsg_sample_cb,
|
|
|
- .remove = __devexit_p(rpmsg_sample_remove),
|
|
|
+ .remove = rpmsg_sample_remove,
|
|
|
};
|
|
|
|
|
|
static int __init rpmsg_client_sample_init(void)
|