Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1330704
| From | Alban <albeu@free.fr> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] reset: ath79: Make reset_control_ops const |
| Date | 2016-02-09 23:50 +0100 |
| Message-ID | <r0pgC-21e-21@gated-at.bofh.it> (permalink) |
| References | <qZU38-5Ph-31@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Mon, 8 Feb 2016 14:28:17 +0100
Philipp Zabel <p.zabel@pengutronix.de> wrote:
> The ath79_reset_ops structure is never modified. Make it const.
>
> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
> ---
> drivers/reset/reset-ath79.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/reset/reset-ath79.c b/drivers/reset/reset-ath79.c
> index 692fc89..ccb940a 100644
> --- a/drivers/reset/reset-ath79.c
> +++ b/drivers/reset/reset-ath79.c
> @@ -70,7 +70,7 @@ static int ath79_reset_status(struct reset_controller_dev *rcdev,
> return !!(val & BIT(id));
> }
>
> -static struct reset_control_ops ath79_reset_ops = {
> +static const struct reset_control_ops ath79_reset_ops = {
> .assert = ath79_reset_assert,
> .deassert = ath79_reset_deassert,
> .status = ath79_reset_status,
Acked-by: Alban Bedel <albeu@free.fr>
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
Re: [PATCH] reset: ath79: Make reset_control_ops const Alban <albeu@free.fr> - 2016-02-09 23:50 +0100
csiph-web