[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20170108173831.GB30556@dell-m4800>
Date: Sun, 8 Jan 2017 17:38:31 +0000
From: Andrey Utkin <andrey_utkin@...tmail.com>
To: Kees Cook <keescook@...omium.org>
Cc: Andrey Utkin <andrey.utkin@...p.bluecherry.net>,
LKML <linux-kernel@...r.kernel.org>,
Bluecherry Maintainers <maintainers@...echerrydvr.com>,
Ismael Luceno <ismael@...ev.co.uk>,
Mauro Carvalho Chehab <mchehab@...nel.org>,
linux-media@...r.kernel.org
Subject: Re: [PATCH] solo6x10: use designated initializers
On Fri, Jan 06, 2017 at 01:21:10PM -0800, Kees Cook wrote:
> > Since `ops` is static, what about this?
> > For the variant given below, you have my signoff.
> >
> >> --- a/drivers/media/pci/solo6x10/solo6x10-g723.c
> >> +++ b/drivers/media/pci/solo6x10/solo6x10-g723.c
> >> @@ -350,7 +350,7 @@ static int solo_snd_pcm_init(struct solo_dev *solo_dev)
> >>
> >> int solo_g723_init(struct solo_dev *solo_dev)
> >> {
> >> - static struct snd_device_ops ops = { NULL };
> >> + static struct snd_device_ops ops;
>
> Ah! Yes, thanks. That works fine too. :) Can this be const as well?
No, it can't be const, it's used as parameter for snd_device_new() which
takes "struct snd_device_ops *".
Powered by blists - more mailing lists