Message ID | 807d7b7f-623b-75f0-baab-13b1b0c02e9d@infradead.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [1/2] block: sed-opal: fix sparse warning: obsolete array init. | expand |
On Wed, Oct 02, 2019 at 07:23:05PM -0700, Randy Dunlap wrote: > From: Randy Dunlap <rdunlap@infradead.org> > > Fix sparse warning: (missing '=') > ../block/sed-opal.c:133:17: warning: obsolete array initializer, use C99 syntax > > Fixes: ff91064ea37c ("block: sed-opal: check size of shadow mbr") > Signed-off-by: Randy Dunlap <rdunlap@infradead.org> > Cc: Jens Axboe <axboe@kernel.dk> > Cc: linux-block@vger.kernel.org > Cc: Jonas Rabenstein <jonas.rabenstein@studium.uni-erlangen.de> > Cc: David Kozub <zub@linux.fjfi.cvut.cz> > --- Un cc'd David and Jonas, +CC'd Jon and Revanth. This looks fine to me too. Reviewed-by: Scott Bauer <sbauer@plzdonthack.me>
On 10/3/2019 9:42 AM, Scott Bauer wrote: > On Wed, Oct 02, 2019 at 07:23:05PM -0700, Randy Dunlap wrote: >> From: Randy Dunlap <rdunlap@infradead.org> >> >> Fix sparse warning: (missing '=') >> ../block/sed-opal.c:133:17: warning: obsolete array initializer, use C99 syntax >> >> Fixes: ff91064ea37c ("block: sed-opal: check size of shadow mbr") >> Signed-off-by: Randy Dunlap <rdunlap@infradead.org> >> Cc: Jens Axboe <axboe@kernel.dk> >> Cc: linux-block@vger.kernel.org >> Cc: Jonas Rabenstein <jonas.rabenstein@studium.uni-erlangen.de> >> Cc: David Kozub <zub@linux.fjfi.cvut.cz> >> --- > Un cc'd David and Jonas, +CC'd Jon and Revanth. > > This looks fine to me too. > > Reviewed-by: Scott Bauer <sbauer@plzdonthack.me> Looks fine to me as well Reviewed-by: Revanth Rajashekar <revanth.rajashekar@intel.com>
On 10/3/2019 9:42 AM, Scott Bauer wrote: > On Wed, Oct 02, 2019 at 07:23:05PM -0700, Randy Dunlap wrote: >> From: Randy Dunlap <rdunlap@infradead.org> >> >> Fix sparse warning: (missing '=') >> ../block/sed-opal.c:133:17: warning: obsolete array initializer, use C99 syntax >> >> Fixes: ff91064ea37c ("block: sed-opal: check size of shadow mbr") >> Signed-off-by: Randy Dunlap <rdunlap@infradead.org> >> Cc: Jens Axboe <axboe@kernel.dk> >> Cc: linux-block@vger.kernel.org >> Cc: Jonas Rabenstein <jonas.rabenstein@studium.uni-erlangen.de> >> Cc: David Kozub <zub@linux.fjfi.cvut.cz> >> --- > Un cc'd David and Jonas, +CC'd Jon and Revanth. > > This looks fine to me too. > > Reviewed-by: Scott Bauer <sbauer@plzdonthack.me> the patch set looks fine for me Reviewed-by: Revanth Rajashekar <revanth.rajashekar@intel.com>
On Wed, 2019-10-02 at 19:23 -0700, Randy Dunlap wrote: > From: Randy Dunlap <rdunlap@infradead.org> > > Fix sparse warning: (missing '=') > ../block/sed-opal.c:133:17: warning: obsolete array initializer, use C99 syntax > > Fixes: ff91064ea37c ("block: sed-opal: check size of shadow mbr") > Signed-off-by: Randy Dunlap <rdunlap@infradead.org> > Cc: Jens Axboe <axboe@kernel.dk> > Cc: linux-block@vger.kernel.org > Cc: Jonas Rabenstein <jonas.rabenstein@studium.uni-erlangen.de> > Cc: David Kozub <zub@linux.fjfi.cvut.cz> > --- > block/sed-opal.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > --- lnx-54-rc1.orig/block/sed-opal.c > +++ lnx-54-rc1/block/sed-opal.c > @@ -129,7 +129,7 @@ static const u8 opaluid[][OPAL_UID_LENGT > { 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x84, 0x01 }, > > /* tables */ > - [OPAL_TABLE_TABLE] > + [OPAL_TABLE_TABLE] = > { 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01 }, > [OPAL_LOCKINGRANGE_GLOBAL] = > { 0x00, 0x00, 0x08, 0x02, 0x00, 0x00, 0x00, 0x01 }, > Reviewed-by: Jon Derrick <jonathan.derrick@intel.com>
On 10/2/19 8:23 PM, Randy Dunlap wrote: > From: Randy Dunlap <rdunlap@infradead.org> > > Fix sparse warning: (missing '=') > ../block/sed-opal.c:133:17: warning: obsolete array initializer, use C99 syntax Applied this (and 2/2, no cover letter...), thanks Randy.
--- lnx-54-rc1.orig/block/sed-opal.c +++ lnx-54-rc1/block/sed-opal.c @@ -129,7 +129,7 @@ static const u8 opaluid[][OPAL_UID_LENGT { 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x84, 0x01 }, /* tables */ - [OPAL_TABLE_TABLE] + [OPAL_TABLE_TABLE] = { 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01 }, [OPAL_LOCKINGRANGE_GLOBAL] = { 0x00, 0x00, 0x08, 0x02, 0x00, 0x00, 0x00, 0x01 },