From: Paul Bolle <pebolle-IWqWACnzNjzz+pZb47iToQ@public.gmane.org>
To: Christian Gmeiner
<christian.gmeiner-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
sameo-VuQAYsv1563Yd54FQh9/CA@public.gmane.org,
lee.jones-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org,
wsa-z923LK4zBo2bacvFa/9K2g@public.gmane.org,
jdelvare-l3A5Bk7waGM@public.gmane.org,
linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
wim-IQzOog9fTRqzQB+pC5nmwQ@public.gmane.org,
linux-watchdog-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
jingoohan1-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
Sascha Hauer <s.hauer-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
Subject: Re: [PATCH 1/4] x86: Add basic support for the Congatec CGEB BIOS interface
Date: Fri, 12 Jun 2015 11:35:18 +0200 [thread overview]
Message-ID: <1434101718.2271.166.camel@x220> (raw)
In-Reply-To: <1434055734-3602-2-git-send-email-christian.gmeiner-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
A few nits.
On Thu, 2015-06-11 at 22:48 +0200, Christian Gmeiner wrote:
> --- /dev/null
> +++ b/drivers/mfd/congatec-cgeb.c
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License as published by
> + * the Free Software Foundation; version 2 of the License.
> + *
> + * This program is distributed in the hope that it will be useful,
> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> + * GNU General Public License for more details.
> +/*
> + * cgeb_invoke - invoke CGEB BIOS call.
s/cgeb_invoke/cgeb_call/
> + *
> + * @board: board context data
> + * @p: CGEB parameters for this call
> + * @fct: CGEB function code
> + * @return: 0 on success or negative error code on failure.
> + *
> + * Call the CGEB BIOS code with the given parameters.
> + */
> +unsigned int cgeb_call(struct cgeb_board_data *board,
> + struct cgeb_function_parameters *p, cgeb_function_t fct)
> +{
> + [...]
> +}
> +static int __init cgeb_init(void)
> +{
> + [...]
> +}
> +
> +static void cgeb_exit(void)
> +{
> + [...]
> +}
> +
> +module_init(cgeb_init);
> +module_exit(cgeb_exit);
cgeb_exit is only used through module_exit(). So I guess it could be
marked __exit, right?
> +MODULE_LICENSE("GPL");
The comment at the top of this file states the license is GPL v2. The
MODULE_LICENSE() macro states, according to include/linux/module.h, that
the license is GPL v2 or later. So I think one of these two needs to
change.
I spotted the same license mismatch in 2/4, 3/4 and 4/4.
Thanks,
Paul Bolle
--
To unsubscribe from this list: send the line "unsubscribe linux-watchdog" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
WARNING: multiple messages have this Message-ID (diff)
From: Paul Bolle <pebolle@tiscali.nl>
To: Christian Gmeiner <christian.gmeiner@gmail.com>
Cc: linux-kernel@vger.kernel.org, sameo@linux.intel.com,
lee.jones@linaro.org, wsa@the-dreams.de, jdelvare@suse.de,
linux-i2c@vger.kernel.org, wim@iguana.be,
linux-watchdog@vger.kernel.org, jingoohan1@gmail.com,
Sascha Hauer <s.hauer@pengutronix.de>
Subject: Re: [PATCH 1/4] x86: Add basic support for the Congatec CGEB BIOS interface
Date: Fri, 12 Jun 2015 11:35:18 +0200 [thread overview]
Message-ID: <1434101718.2271.166.camel@x220> (raw)
In-Reply-To: <1434055734-3602-2-git-send-email-christian.gmeiner@gmail.com>
A few nits.
On Thu, 2015-06-11 at 22:48 +0200, Christian Gmeiner wrote:
> --- /dev/null
> +++ b/drivers/mfd/congatec-cgeb.c
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License as published by
> + * the Free Software Foundation; version 2 of the License.
> + *
> + * This program is distributed in the hope that it will be useful,
> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> + * GNU General Public License for more details.
> +/*
> + * cgeb_invoke - invoke CGEB BIOS call.
s/cgeb_invoke/cgeb_call/
> + *
> + * @board: board context data
> + * @p: CGEB parameters for this call
> + * @fct: CGEB function code
> + * @return: 0 on success or negative error code on failure.
> + *
> + * Call the CGEB BIOS code with the given parameters.
> + */
> +unsigned int cgeb_call(struct cgeb_board_data *board,
> + struct cgeb_function_parameters *p, cgeb_function_t fct)
> +{
> + [...]
> +}
> +static int __init cgeb_init(void)
> +{
> + [...]
> +}
> +
> +static void cgeb_exit(void)
> +{
> + [...]
> +}
> +
> +module_init(cgeb_init);
> +module_exit(cgeb_exit);
cgeb_exit is only used through module_exit(). So I guess it could be
marked __exit, right?
> +MODULE_LICENSE("GPL");
The comment at the top of this file states the license is GPL v2. The
MODULE_LICENSE() macro states, according to include/linux/module.h, that
the license is GPL v2 or later. So I think one of these two needs to
change.
I spotted the same license mismatch in 2/4, 3/4 and 4/4.
Thanks,
Paul Bolle
next prev parent reply other threads:[~2015-06-12 9:35 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-06-11 20:48 [PATCH 0/4] Add support for Congatec CGEB BIOS interface Christian Gmeiner
2015-06-11 20:48 ` [PATCH 1/4] x86: Add basic support for the " Christian Gmeiner
[not found] ` <1434055734-3602-2-git-send-email-christian.gmeiner-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2015-06-12 9:35 ` Paul Bolle [this message]
2015-06-12 9:35 ` Paul Bolle
2015-06-15 7:24 ` Christian Gmeiner
2015-06-15 7:24 ` Christian Gmeiner
2015-06-11 20:48 ` [PATCH 2/4] i2c: Add Congatec CGEB I2C driver Christian Gmeiner
[not found] ` <1434055734-3602-3-git-send-email-christian.gmeiner-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2015-06-12 11:05 ` Wolfram Sang
2015-06-12 11:05 ` Wolfram Sang
2015-06-11 20:48 ` [PATCH 3/4] watchdog: Add Congatec CGEB watchdog driver Christian Gmeiner
[not found] ` <1434055734-3602-4-git-send-email-christian.gmeiner-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2015-06-11 22:04 ` Guenter Roeck
2015-06-11 22:04 ` Guenter Roeck
[not found] ` <1434055734-3602-1-git-send-email-christian.gmeiner-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2015-06-11 20:48 ` [PATCH 4/4] backlight: Add Congatec CGEB backlight driver Christian Gmeiner
2015-06-11 20:48 ` Christian Gmeiner
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=1434101718.2271.166.camel@x220 \
--to=pebolle-iwqwacnznjzz+pzb47itoq@public.gmane.org \
--cc=christian.gmeiner-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
--cc=jdelvare-l3A5Bk7waGM@public.gmane.org \
--cc=jingoohan1-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
--cc=lee.jones-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
--cc=linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-watchdog-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=s.hauer-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org \
--cc=sameo-VuQAYsv1563Yd54FQh9/CA@public.gmane.org \
--cc=wim-IQzOog9fTRqzQB+pC5nmwQ@public.gmane.org \
--cc=wsa-z923LK4zBo2bacvFa/9K2g@public.gmane.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 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.