From: Mika Westerberg <mika.westerberg@linux.intel.com>
To: linux-acpi@vger.kernel.org
Cc: linux-kernel@vger.kernel.org, lenb@kernel.org,
rui.zhang@intel.com, khali@linux-fr.org, ben-linux@fluff.org,
w.sang@pengutronix.de, dmitry.torokhov@gmail.com,
eric.piel@tremplin-utc.net, mjg@redhat.com,
ike.pan@canonical.com, herton@canonical.com,
Mika Westerberg <mika.westerberg@linux.intel.com>
Subject: [PATCH 01/12] ACPI: introduce module_acpi_driver() helper macro
Date: Thu, 28 Jun 2012 13:59:20 +0300 [thread overview]
Message-ID: <1340881171-14811-2-git-send-email-mika.westerberg@linux.intel.com> (raw)
In-Reply-To: <1340881171-14811-1-git-send-email-mika.westerberg@linux.intel.com>
Add a helper macro module_acpi_driver() which reduces the boilerplate code
for ACPI drivers. This is similar what is done for other busses (PCI, SPI,
I2C etc).
Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
---
include/acpi/acpi_bus.h | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/include/acpi/acpi_bus.h b/include/acpi/acpi_bus.h
index 9e6e1c6..45d3249 100644
--- a/include/acpi/acpi_bus.h
+++ b/include/acpi/acpi_bus.h
@@ -376,6 +376,19 @@ int acpi_match_device_ids(struct acpi_device *device,
int acpi_create_dir(struct acpi_device *);
void acpi_remove_dir(struct acpi_device *);
+
+/**
+ * module_acpi_driver(acpi_driver) - Helper macro for registering an ACPI driver
+ * @__acpi_driver: acpi_driver struct
+ *
+ * Helper macro for ACPI drivers which do not do anything special in module
+ * init/exit. This eliminates a lot of boilerplate. Each module may only
+ * use this macro once, and calling it replaces module_init() and module_exit()
+ */
+#define module_acpi_driver(__acpi_driver) \
+ module_driver(__acpi_driver, acpi_bus_register_driver, \
+ acpi_bus_unregister_driver)
+
/*
* Bind physical devices with ACPI devices
*/
--
1.7.10
next prev parent reply other threads:[~2012-06-28 10:59 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-06-28 10:59 [PATCH 00/12] ACPI: add module_acpi_driver() and convert drivers to it Mika Westerberg
2012-06-28 10:59 ` Mika Westerberg [this message]
2012-06-28 10:59 ` [PATCH 02/12] ACPI/button: convert to module_acpi_driver() Mika Westerberg
2012-06-28 10:59 ` [PATCH 03/12] ACPI/fan: " Mika Westerberg
2012-06-28 10:59 ` [PATCH 04/12] ACPI/hed: " Mika Westerberg
2012-06-28 10:59 ` [PATCH 05/12] ACPI/sbshc: " Mika Westerberg
2012-06-28 10:59 ` [PATCH 06/12] i2c-scmi: " Mika Westerberg
2012-07-04 11:19 ` Jean Delvare
2012-06-28 10:59 ` [PATCH 07/12] Input: atlas_btns - " Mika Westerberg
2012-06-28 23:19 ` Dmitry Torokhov
2012-06-28 10:59 ` [PATCH 08/12] hp_accel: " Mika Westerberg
2012-06-29 7:50 ` Éric Piel
2012-06-28 10:59 ` [PATCH 09/12] ideapad: " Mika Westerberg
2012-07-04 10:29 ` Ike Panhc
2012-06-28 10:59 ` [PATCH 10/12] topstar-laptop: " Mika Westerberg
2012-06-29 12:50 ` Herton Ronaldo Krzesinski
2012-06-28 10:59 ` [PATCH 11/12] toshiba_bluetooth: " Mika Westerberg
2012-06-28 10:59 ` [PATCH 12/12] xo15-ebook: " Mika Westerberg
2012-07-13 8:15 ` [PATCH 00/12] ACPI: add module_acpi_driver() and convert drivers to it Mika Westerberg
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1340881171-14811-2-git-send-email-mika.westerberg@linux.intel.com \
--to=mika.westerberg@linux.intel.com \
--cc=ben-linux@fluff.org \
--cc=dmitry.torokhov@gmail.com \
--cc=eric.piel@tremplin-utc.net \
--cc=herton@canonical.com \
--cc=ike.pan@canonical.com \
--cc=khali@linux-fr.org \
--cc=lenb@kernel.org \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mjg@redhat.com \
--cc=rui.zhang@intel.com \
--cc=w.sang@pengutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).