* [PATCH] Update some prototypes in platform.txt
@ 2008-02-02 11:15 Stephen Rothwell
2008-02-02 20:57 ` patch driver-core-update-some-prototypes-in-platform.txt.patch added to gregkh-2.6 tree gregkh
0 siblings, 1 reply; 2+ messages in thread
From: Stephen Rothwell @ 2008-02-02 11:15 UTC (permalink / raw)
To: Greg Kroah-Hartman; +Cc: LKML
Just make these match the actual code.
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
---
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
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/
^ permalink raw reply related [flat|nested] 2+ messages in thread
* patch driver-core-update-some-prototypes-in-platform.txt.patch added to gregkh-2.6 tree
2008-02-02 11:15 [PATCH] Update some prototypes in platform.txt Stephen Rothwell
@ 2008-02-02 20:57 ` gregkh
0 siblings, 0 replies; 2+ messages in thread
From: gregkh @ 2008-02-02 20:57 UTC (permalink / raw)
To: sfr, gregkh, linux-kernel
This is a note to let you know that I've just added the patch titled
Subject: Driver core: Update some prototypes in platform.txt
to my gregkh-2.6 tree. Its filename is
driver-core-update-some-prototypes-in-platform.txt.patch
This tree can be found at
http://www.kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/patches/
>From sfr@canb.auug.org.au Sat Feb 2 12:50:36 2008
From: Stephen Rothwell <sfr@canb.auug.org.au>
Date: Sat, 2 Feb 2008 22:15:07 +1100
Subject: Driver core: Update some prototypes in platform.txt
To: Greg Kroah-Hartman <gregkh@suse.de>
Cc: LKML <linux-kernel@vger.kernel.org>
Message-ID: <20080202221507.fd916a3b.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 file changed, 3 insertions(+), 3 deletions(-)
--- a/Documentation/driver-model/platform.txt
+++ b/Documentation/driver-model/platform.txt
@@ -122,15 +122,15 @@ None the less, there are some APIs to su
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.
Patches currently in gregkh-2.6 which might be from sfr@canb.auug.org.au are
bad/battery-class-driver.patch
driver/ppc-fix-powerpc-vio_find_name-to-not-use-devices_subsys.patch
driver/driver-core-update-some-prototypes-in-platform.txt.patch
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-02-02 21:00 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-02 11:15 [PATCH] Update some prototypes in platform.txt Stephen Rothwell
2008-02-02 20:57 ` patch driver-core-update-some-prototypes-in-platform.txt.patch added to gregkh-2.6 tree gregkh
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.