Re: [PATCH][next] tg3: Avoid the use of one-element array

2020-07-22 Thread David Miller
From: "Gustavo A. R. Silva" Date: Wed, 22 Jul 2020 13:43:58 -0500 > One-element arrays are being deprecated[1]. Replace the one-element > array with a simple value type 'u32 reserved2'[2], once it seems > this is just a placeholder for alignment. > > [1] https://github.com/KSPP/linux/issues/79 >

Re: [PATCH][next] tg3: Avoid the use of one-element array

2020-07-22 Thread Michael Chan
On Wed, Jul 22, 2020 at 11:38 AM Gustavo A. R. Silva wrote: > > One-element arrays are being deprecated[1]. Replace the one-element > array with a simple value type 'u32 reserved2'[2], once it seems > this is just a placeholder for alignment. > > [1] https://github.com/KSPP/linux/issues/79 > [2] h

[PATCH][next] tg3: Avoid the use of one-element array

2020-07-22 Thread Gustavo A. R. Silva
One-element arrays are being deprecated[1]. Replace the one-element array with a simple value type 'u32 reserved2'[2], once it seems this is just a placeholder for alignment. [1] https://github.com/KSPP/linux/issues/79 [2] https://github.com/KSPP/linux/issues/86 Tested-by: kernel test robot Link