mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [-mm patch] hdaps: Add explicit hardware configuration functions - fix
@ 2006-08-15 22:26 Shem Multinymous
  2006-08-15 22:42 ` Pavel Machek
  2006-08-16  6:27 ` Andrew Morton
  0 siblings, 2 replies; 3+ messages in thread
From: Shem Multinymous @ 2006-08-15 22:26 UTC (permalink / raw)
  To: linux-kernel
  Cc: Andrew Morton, Robert Love, Greg Kroah-Hartman, hdaps-devel,
	Pavel Machek, Jean Delvare

Fixes two things about hdaps_check_ec() in the hdaps driver:
1. Remove the __init, it may be called well after module init, during resume.
2. Remove an unused parameter.

Signed-off-by: Shem Multinymous <multinymous@gmail.com>
---
This applies on top of
hdaps-add-explicit-hardware-configuration-functions.patch
currently in -mm
(LKML: "[PATCH 08/12] hdaps: Add explicit hardware configuration functions").

Andrew, do you prefer to get the full rolled-up patch in such cases?

--- a/drivers/hwmon/hdaps.c
+++ b/drivers/hwmon/hdaps.c
@@ -305,7 +305,7 @@ static int hdaps_get_ec_mode(u8 *mode)
  * Follows the clean-room spec for HDAPS; we don't know what it means.
  * Returns zero on success and negative error code on failure.  Can sleep.
  */
-static int __init hdaps_check_ec(u8 *mode)
+static int hdaps_check_ec()
 {
 	const struct thinkpad_ec_row args =
 		{ .mask=0x0003, .val={0x17, 0x81} };
@@ -343,7 +343,7 @@ static int hdaps_device_init(void)
 	if (mode==0x00)
 		{ ABORT_INIT("accelerometer not available"); goto bad; }

-	if (hdaps_check_ec(&mode))
+	if (hdaps_check_ec())
 		{ ABORT_INIT("hdaps_check_ec failed"); goto bad; }

 	if (hdaps_set_power(1))

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2006-08-16  6:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-08-15 22:26 [-mm patch] hdaps: Add explicit hardware configuration functions - fix Shem Multinymous
2006-08-15 22:42 ` Pavel Machek
2006-08-16  6:27 ` Andrew Morton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®