From: khali@linux-fr.org (Jean Delvare)
To: Adrian Bunk <bunk@stusta.de>
Cc: greg@kroah.com, sensors@Stimpy.netroedge.com,
linux-kernel@vger.kernel.org
Subject: [2.6 patch] i2c-core.c: make some code static
Date: Thu, 19 May 2005 06:25:34 +0000 [thread overview]
Message-ID: <20050131215050.61c2924c.khali@linux-fr.org> (raw)
In-Reply-To: <20050131185955.GA18316@stusta.de>
Hi Adrian,
> This patch makes some needlessly global code static.
> (...)
> @@ -38,12 +38,43 @@
> static DECLARE_MUTEX(core_lists);
> static DEFINE_IDR(i2c_adapter_idr);
>
> -int i2c_device_probe(struct device *dev)
> +/* match always succeeds, as we want the probe() to tell if we really
> accept this match */ +static int i2c_device_match(struct device *dev,
> struct device_driver *drv) +{
> + return 1;
> +}
> +
> +static int i2c_bus_suspend(struct device * dev, pm_message_t state)
> +{
> + int rc = 0;
> +
> + if (dev->driver && dev->driver->suspend)
> + rc = dev->driver->suspend(dev,state,0);
> + return rc;
> +}
> +
> +static int i2c_bus_resume(struct device * dev)
> +{
> + int rc = 0;
> +
> + if (dev->driver && dev->driver->resume)
> + rc = dev->driver->resume(dev,0);
> + return rc;
> +}
> +
> +static struct bus_type i2c_bus_type = {
> + .name = "i2c",
> + .match = i2c_device_match,
> + .suspend = i2c_bus_suspend,
> + .resume = i2c_bus_resume,
> +};
> +
> +static int i2c_device_probe(struct device *dev)
> {
> return -ENODEV;
> }
>
> -int i2c_device_remove(struct device *dev)
> +static int i2c_device_remove(struct device *dev)
> {
> return 0;
> }
> @@ -523,38 +554,6 @@
> up(&adap->clist_lock);
> }
>
> -
> -/* match always succeeds, as we want the probe() to tell if we really
> accept this match */ -static int i2c_device_match(struct device *dev,
> struct device_driver *drv) -{
> - return 1;
> -}
> -
> -static int i2c_bus_suspend(struct device * dev, pm_message_t state)
> -{
> - int rc = 0;
> -
> - if (dev->driver && dev->driver->suspend)
> - rc = dev->driver->suspend(dev,state,0);
> - return rc;
> -}
> -
> -static int i2c_bus_resume(struct device * dev)
> -{
> - int rc = 0;
> -
> - if (dev->driver && dev->driver->resume)
> - rc = dev->driver->resume(dev,0);
> - return rc;
> -}
> -
> -struct bus_type i2c_bus_type = {
> - .name = "i2c",
> - .match = i2c_device_match,
> - .suspend = i2c_bus_suspend,
> - .resume = i2c_bus_resume,
> -};
> -
> static int __init i2c_init(void)
> {
> int retval;
Is moving that code around really necessary? Looks to me like only the
i2c_bus_type structure needs to be moved.
Thanks,
--
Jean Delvare
WARNING: multiple messages have this Message-ID (diff)
From: Jean Delvare <khali@linux-fr.org>
To: Adrian Bunk <bunk@stusta.de>
Cc: greg@kroah.com, sensors@Stimpy.netroedge.com,
linux-kernel@vger.kernel.org
Subject: Re: [2.6 patch] i2c-core.c: make some code static
Date: Mon, 31 Jan 2005 21:50:50 +0100 [thread overview]
Message-ID: <20050131215050.61c2924c.khali@linux-fr.org> (raw)
In-Reply-To: <20050131185955.GA18316@stusta.de>
Hi Adrian,
> This patch makes some needlessly global code static.
> (...)
> @@ -38,12 +38,43 @@
> static DECLARE_MUTEX(core_lists);
> static DEFINE_IDR(i2c_adapter_idr);
>
> -int i2c_device_probe(struct device *dev)
> +/* match always succeeds, as we want the probe() to tell if we really
> accept this match */ +static int i2c_device_match(struct device *dev,
> struct device_driver *drv) +{
> + return 1;
> +}
> +
> +static int i2c_bus_suspend(struct device * dev, pm_message_t state)
> +{
> + int rc = 0;
> +
> + if (dev->driver && dev->driver->suspend)
> + rc = dev->driver->suspend(dev,state,0);
> + return rc;
> +}
> +
> +static int i2c_bus_resume(struct device * dev)
> +{
> + int rc = 0;
> +
> + if (dev->driver && dev->driver->resume)
> + rc = dev->driver->resume(dev,0);
> + return rc;
> +}
> +
> +static struct bus_type i2c_bus_type = {
> + .name = "i2c",
> + .match = i2c_device_match,
> + .suspend = i2c_bus_suspend,
> + .resume = i2c_bus_resume,
> +};
> +
> +static int i2c_device_probe(struct device *dev)
> {
> return -ENODEV;
> }
>
> -int i2c_device_remove(struct device *dev)
> +static int i2c_device_remove(struct device *dev)
> {
> return 0;
> }
> @@ -523,38 +554,6 @@
> up(&adap->clist_lock);
> }
>
> -
> -/* match always succeeds, as we want the probe() to tell if we really
> accept this match */ -static int i2c_device_match(struct device *dev,
> struct device_driver *drv) -{
> - return 1;
> -}
> -
> -static int i2c_bus_suspend(struct device * dev, pm_message_t state)
> -{
> - int rc = 0;
> -
> - if (dev->driver && dev->driver->suspend)
> - rc = dev->driver->suspend(dev,state,0);
> - return rc;
> -}
> -
> -static int i2c_bus_resume(struct device * dev)
> -{
> - int rc = 0;
> -
> - if (dev->driver && dev->driver->resume)
> - rc = dev->driver->resume(dev,0);
> - return rc;
> -}
> -
> -struct bus_type i2c_bus_type = {
> - .name = "i2c",
> - .match = i2c_device_match,
> - .suspend = i2c_bus_suspend,
> - .resume = i2c_bus_resume,
> -};
> -
> static int __init i2c_init(void)
> {
> int retval;
Is moving that code around really necessary? Looks to me like only the
i2c_bus_type structure needs to be moved.
Thanks,
--
Jean Delvare
next prev parent reply other threads:[~2005-05-19 6:25 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-01-31 18:59 [2.6 patch] i2c-core.c: make some code static Adrian Bunk
2005-05-19 6:25 ` Adrian Bunk
2005-01-31 20:50 ` Jean Delvare [this message]
2005-05-19 6:25 ` Jean Delvare
2005-01-31 21:46 ` Adrian Bunk
2005-05-19 6:25 ` Adrian Bunk
2005-01-31 22:04 ` Jean Delvare
2005-05-19 6:25 ` Jean Delvare
2005-02-01 8:18 ` Greg KH
2005-05-19 6:25 ` 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=20050131215050.61c2924c.khali@linux-fr.org \
--to=khali@linux-fr.org \
--cc=bunk@stusta.de \
--cc=greg@kroah.com \
--cc=linux-kernel@vger.kernel.org \
--cc=sensors@Stimpy.netroedge.com \
/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 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.