X-Git-Url: https://git.karo-electronics.de/?a=blobdiff_plain;f=Documentation%2Frpmsg.txt;h=f7edc3aa1e92d4e2eac9ed143212f9757577f041;hb=0335cb469ad4ab3072a4246ceb0573483fcee5bf;hp=409d9f964c5b547b9e3f09d76c662aebf1216536;hpb=6ac1ef482d7ae0c690f1640bf6eb818ff9a2d91e;p=karo-tx-linux.git diff --git a/Documentation/rpmsg.txt b/Documentation/rpmsg.txt index 409d9f964c5b..f7edc3aa1e92 100644 --- a/Documentation/rpmsg.txt +++ b/Documentation/rpmsg.txt @@ -236,7 +236,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"); } @@ -253,7 +253,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 init(void)