From: Randy Dunlap <randy.dunlap@oracle.com>
To: Stephen Rothwell <sfr@canb.auug.org.au>
Cc: Greg KH <greg@kroah.com>,
linux-kernel@vger.kernel.org, David Gibson <dwg@au1.ibm.com>,
linuxppc-dev@ozlabs.org, "Kyle A. Lucke" <klucke@us.ibm.com>,
paulus@samba.org
Subject: Re: [PATCH] Introduce driver_create/remove_dir
Date: Tue, 11 Dec 2007 16:40:39 -0800 [thread overview]
Message-ID: <20071211164039.013f4393.randy.dunlap@oracle.com> (raw)
In-Reply-To: <20071212105633.725496cb.sfr@canb.auug.org.au>
On Wed, 12 Dec 2007 10:56:33 +1100 Stephen Rothwell wrote:
>
> Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
> ---
> drivers/base/driver.c | 24 ++++++++++++++++++++++++
> drivers/net/iseries_veth.c | 15 +++++++--------
> include/linux/device.h | 3 +++
> 3 files changed, 34 insertions(+), 8 deletions(-)
>
>
> diff --git a/drivers/base/driver.c b/drivers/base/driver.c
> index eb11475..6527a91 100644
> --- a/drivers/base/driver.c
> +++ b/drivers/base/driver.c
> @@ -91,6 +91,30 @@ struct device * driver_find_device(struct device_driver *drv,
> EXPORT_SYMBOL_GPL(driver_find_device);
>
> /**
> + * driver_create_dir - create a subdirectory for a driver.
> + * @drv: driver.
> + * @kobj: the kobject we are creating the directory for.
> + */
> +int __must_check driver_create_dir(struct device_driver *drv,
> + struct kobject *kobj)
> +{
> + kobj->parent = &drv->kobj;
> + return kobject_add(kobj);
> +}
> +EXPORT_SYMBOL_GPL(driver_create_dir);
> +
> +/**
> + * driver_remove_dir - remove a subdirectory for a driver.
> + * @drv: driver.
> + * @attr: driver attribute descriptor.
Second arg below is @kobj.
> + */
> +void driver_remove_dir(struct device_driver *drv, struct kobject *kobj)
> +{
> + kobject_del(kobj);
> +}
> +EXPORT_SYMBOL_GPL(driver_remove_dir);
> +
> +/**
> * driver_create_file - create sysfs file for driver.
> * @drv: driver.
> * @attr: driver attribute descriptor.
---
~Randy
next prev parent reply other threads:[~2007-12-12 0:42 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-12-05 9:30 drivers/net/iseries_veth.c dubious sysfs usage Greg KH
2007-12-05 11:10 ` Michael Ellerman
2007-12-05 21:41 ` Greg KH
2007-12-06 3:48 ` Michael Ellerman
2007-12-11 23:56 ` [PATCH] Introduce driver_create/remove_dir Stephen Rothwell
2007-12-12 0:40 ` Randy Dunlap [this message]
2007-12-12 2:36 ` Stephen Rothwell
2007-12-13 7:10 ` Greg KH
2007-12-13 7:08 ` drivers/net/iseries_veth.c dubious sysfs usage Greg KH
2007-12-24 2:52 ` Stephen Rothwell
2007-12-24 5:01 ` Greg KH
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=20071211164039.013f4393.randy.dunlap@oracle.com \
--to=randy.dunlap@oracle.com \
--cc=dwg@au1.ibm.com \
--cc=greg@kroah.com \
--cc=klucke@us.ibm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linuxppc-dev@ozlabs.org \
--cc=paulus@samba.org \
--cc=sfr@canb.auug.org.au \
/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).