From: Christian Gromm <christian.gromm@microchip.com>
To: Adrian Remonda <adrianremonda@gmail.com>
Cc: <gregkh@linuxfoundation.org>, <devel@driverdev.osuosl.org>,
<linux-kernel@vger.kernel.org>
Subject: Re: [PATCHv7 1/5] Staging: most: mostcore/core.c. Fix "missing static keyword" warnings
Date: Wed, 19 Aug 2015 16:30:25 +0200 [thread overview]
Message-ID: <20150819163025.4225447a@muaddib> (raw)
In-Reply-To: <1439547484-20492-2-git-send-email-adrianremonda@gmail.com>
On Fri, 14 Aug 2015 12:18:00 +0200
Adrian Remonda <adrianremonda@gmail.com> wrote:
> This is a patch to the mostcore/core.c file. It makes
> several local functions and structures static to prevent global
> visibility.
>
> Signed-off-by: Adrian Remonda <adrianremonda@gmail.com>
Acked-by: Christian Gromm <christian.gromm@microchip.com>
> ---
> drivers/staging/most/mostcore/core.c | 15 ++++++++-------
> 1 file changed, 8 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/staging/most/mostcore/core.c b/drivers/staging/most/mostcore/core.c
> index f4fea8cf5560..fa9c19b65a5c 100644
> --- a/drivers/staging/most/mostcore/core.c
> +++ b/drivers/staging/most/mostcore/core.c
> @@ -178,7 +178,7 @@ static void most_free_mbo_coherent(struct mbo *mbo)
> * flush_channel_fifos - clear the channel fifos
> * @c: pointer to channel object
> */
> -void flush_channel_fifos(struct most_c_obj *c)
> +static void flush_channel_fifos(struct most_c_obj *c)
> {
> unsigned long flags, hf_flags;
> struct mbo *mbo, *tmp;
> @@ -888,7 +888,7 @@ static ssize_t show_add_link(struct most_aim_obj *aim_obj,
> * Input: "mdev0:ch0@ep_81"
> * Output: *a -> "mdev0", *b -> "ch0@ep_81", *c == NULL
> */
> -int split_string(char *buf, char **a, char **b, char **c)
> +static int split_string(char *buf, char **a, char **b, char **c)
> {
> *a = strsep(&buf, ":");
> if (!*a)
> @@ -1006,7 +1006,7 @@ static ssize_t store_add_link(struct most_aim_obj *aim_obj,
> return len;
> }
>
> -struct most_aim_attribute most_aim_attr_add_link =
> +static struct most_aim_attribute most_aim_attr_add_link =
> __ATTR(add_link, S_IRUGO | S_IWUSR, show_add_link, store_add_link);
>
> static ssize_t show_remove_link(struct most_aim_obj *aim_obj,
> @@ -1057,7 +1057,7 @@ static ssize_t store_remove_link(struct most_aim_obj *aim_obj,
> return len;
> }
>
> -struct most_aim_attribute most_aim_attr_remove_link =
> +static struct most_aim_attribute most_aim_attr_remove_link =
> __ATTR(remove_link, S_IRUGO | S_IWUSR, show_remove_link, store_remove_link);
>
> static struct attribute *most_aim_def_attrs[] = {
> @@ -1121,14 +1121,14 @@ static void destroy_most_aim_obj(struct most_aim_obj *p)
> /**
> * Instantiation of the MOST bus
> */
> -struct bus_type most_bus = {
> +static struct bus_type most_bus = {
> .name = "most",
> };
>
> /**
> * Instantiation of the core driver
> */
> -struct device_driver mostcore = {
> +static struct device_driver mostcore = {
> .name = "mostcore",
> .bus = &most_bus,
> };
> @@ -1255,7 +1255,8 @@ static void arm_mbo(struct mbo *mbo)
> *
> * Returns the number of allocated and enqueued MBOs.
> */
> -int arm_mbo_chain(struct most_c_obj *c, int dir, void (*compl)(struct mbo *))
> +static int arm_mbo_chain(struct most_c_obj *c, int dir,
> + void (*compl)(struct mbo *))
> {
> unsigned int i;
> int retval;
next prev parent reply other threads:[~2015-08-19 14:30 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-08-14 10:17 [PATCHv7 0/5] Staging: most: several warnings fix reported by sparse Adrian Remonda
2015-08-14 10:18 ` [PATCHv7 1/5] Staging: most: mostcore/core.c. Fix "missing static keyword" warnings Adrian Remonda
2015-08-19 14:30 ` Christian Gromm [this message]
2015-08-14 10:18 ` [PATCHv7 2/5] Staging: most: mostcore/core.c. Fix "Using plain integer as NULL pointer" warnings Adrian Remonda
2015-08-19 14:30 ` Christian Gromm
2015-08-14 10:18 ` [PATCHv7 3/5] Staging: most: hdm-usb/hdm_usb.c. Fix "missing static keyword" warnings Adrian Remonda
2015-08-19 15:06 ` Christian Gromm
2015-08-14 10:18 ` [PATCHv7 4/5] Staging: most: hdm-dim2/dim2_hal.c. Fix "Using plain integer as NULL pointer" warnings Adrian Remonda
2015-08-19 15:12 ` Christian Gromm
2015-08-14 10:18 ` [PATCHv7 5/5] Staging: most: aim-cdev/cdev.c. Fix "missing static keyword" warnings Adrian Remonda
2015-08-19 15:12 ` Christian Gromm
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=20150819163025.4225447a@muaddib \
--to=christian.gromm@microchip.com \
--cc=adrianremonda@gmail.com \
--cc=devel@driverdev.osuosl.org \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
/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