[PATCH 09/10] Driver core: Update some prototypes in platform.txt

!MAILaRCHIVE_VOTE_RePLACE
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: <linux-kernel@...>
Cc: Stephen Rothwell <sfr@...>, Greg Kroah-Hartman <gregkh@...>
Date: Saturday, February 2, 2008 - 7:56 pm

From: Stephen Rothwell <sfr@canb.auug.org.au>

Just make these match the actual code.

Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
---
 Documentation/driver-model/platform.txt |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Documentation/driver-model/platform.txt b/Documentation/driver-model/platform.txt
index 2a97320..83009fd 100644
--- a/Documentation/driver-model/platform.txt
+++ b/Documentation/driver-model/platform.txt
@@ -122,15 +122,15 @@ None the less, there are some APIs to support such legacy drivers.  Avoid
 using these calls except with such hotplug-deficient drivers.
 
 	struct platform_device *platform_device_alloc(
-			char *name, unsigned id);
+			const char *name, int id);
 
 You can use platform_device_alloc() to dynamically allocate a device, which
 you will then initialize with resources and platform_device_register().
 A better solution is usually:
 
 	struct platform_device *platform_device_register_simple(
-			char *name, unsigned id,
-			struct resource *res, unsigned nres);
+			const char *name, int id,
+			struct resource *res, unsigned int nres);
 
 You can use platform_device_register_simple() as a one-step call to allocate
 and register a device.
-- 
1.5.3.8

--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH 10/10] Driver core: Remove unneeded get_{device,drive..., Greg Kroah-Hartman, (Sat Feb 2, 7:56 pm)
[PATCH 09/10] Driver core: Update some prototypes in platfor..., Greg Kroah-Hartman, (Sat Feb 2, 7:56 pm)
[PATCH 08/10] driver core: convert to use class_find_device ..., Greg Kroah-Hartman, (Sat Feb 2, 7:56 pm)
[PATCH 07/10] PM: Export device_pm_schedule_removal, Greg Kroah-Hartman, (Sat Feb 2, 7:56 pm)
[PATCH 06/10] nozomi: finish constification, Greg Kroah-Hartman, (Sat Feb 2, 7:56 pm)
[PATCH 05/10] nozomi: constify driver, Greg Kroah-Hartman, (Sat Feb 2, 7:55 pm)
[PATCH 04/10] nozomi driver update, Greg Kroah-Hartman, (Sat Feb 2, 7:55 pm)
[PATCH 03/10] Add ja_JP translation of stable_kernel_rules.txt, Greg Kroah-Hartman, (Sat Feb 2, 7:55 pm)
[PATCH 02/10] kobject: kerneldoc comment fix, Greg Kroah-Hartman, (Sat Feb 2, 7:55 pm)
[PATCH 01/10] kobject: Always build in kernel/ksysfs.o., Greg Kroah-Hartman, (Sat Feb 2, 7:55 pm)