From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754928AbcEDWC2 (ORCPT ); Wed, 4 May 2016 18:02:28 -0400 Received: from bear.ext.ti.com ([192.94.94.41]:59849 "EHLO bear.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754199AbcEDWBo (ORCPT ); Wed, 4 May 2016 18:01:44 -0400 From: "Andrew F. Davis" To: Ohad Ben-Cohen , Bjorn Andersson , Jonathan Corbet , Suman Anna CC: , , , "Andrew F . Davis" Subject: [PATCH v2 4/4] rpmsg: use module_rpmsg_driver in existing drivers and examples Date: Wed, 4 May 2016 17:01:39 -0500 Message-ID: <1462399299-28159-4-git-send-email-afd@ti.com> X-Mailer: git-send-email 2.8.2 In-Reply-To: <1462399299-28159-1-git-send-email-afd@ti.com> References: <1462399299-28159-1-git-send-email-afd@ti.com> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Existing drivers and examples are updated to use the module_rpmsg_driver helper macro. Signed-off-by: Andrew F. Davis --- Documentation/rpmsg.txt | 13 +------------ samples/rpmsg/rpmsg_client_sample.c | 13 +------------ 2 files changed, 2 insertions(+), 24 deletions(-) diff --git a/Documentation/rpmsg.txt b/Documentation/rpmsg.txt index 1d88426..a95e36a 100644 --- a/Documentation/rpmsg.txt +++ b/Documentation/rpmsg.txt @@ -254,18 +254,7 @@ static struct rpmsg_driver rpmsg_sample_client = { .callback = rpmsg_sample_cb, .remove = rpmsg_sample_remove, }; - -static int __init init(void) -{ - return register_rpmsg_driver(&rpmsg_sample_client); -} -module_init(init); - -static void __exit fini(void) -{ - unregister_rpmsg_driver(&rpmsg_sample_client); -} -module_exit(fini); +module_rpmsg_driver(rpmsg_sample_client); Note: a similar sample which can be built and loaded can be found in samples/rpmsg/. diff --git a/samples/rpmsg/rpmsg_client_sample.c b/samples/rpmsg/rpmsg_client_sample.c index 82ed288..d0e249c9 100644 --- a/samples/rpmsg/rpmsg_client_sample.c +++ b/samples/rpmsg/rpmsg_client_sample.c @@ -82,18 +82,7 @@ static struct rpmsg_driver rpmsg_sample_client = { .callback = rpmsg_sample_cb, .remove = rpmsg_sample_remove, }; - -static int __init rpmsg_client_sample_init(void) -{ - return register_rpmsg_driver(&rpmsg_sample_client); -} -module_init(rpmsg_client_sample_init); - -static void __exit rpmsg_client_sample_fini(void) -{ - unregister_rpmsg_driver(&rpmsg_sample_client); -} -module_exit(rpmsg_client_sample_fini); +module_rpmsg_driver(rpmsg_sample_client); MODULE_DESCRIPTION("Remote processor messaging sample client driver"); MODULE_LICENSE("GPL v2"); -- 2.8.2