mbox series

[GIT,PULL] FPGA Manager changes for 6.1-rc1

Message ID YygCSm7btA1pkKdk@yilunxu-OptiPlex-7050 (mailing list archive)
State New
Headers show
Series [GIT,PULL] FPGA Manager changes for 6.1-rc1 | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga tags/fpga-for-6.1-rc1

Message

Xu Yilun Sept. 19, 2022, 5:46 a.m. UTC
The following changes since commit 568035b01cfb107af8d2e4bd2fb9aea22cf5b868:

  Linux 6.0-rc1 (2022-08-14 15:50:18 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga tags/fpga-for-6.1-rc1

for you to fetch changes up to 562d0bf2cab80810fa50a1f109a6bdb61c25efc2:

  fpga: m10bmc-sec: d5005 bmc secure update driver (2022-09-11 15:36:35 +0800)

----------------------------------------------------------------
FPGA Manager changes for 6.1-rc1

DFL

- Matthew's change adds new device IDs supported by DFL.
- Dan's change uses array_size() for memory allocation to prevent
potential overflow

Microchip

- Conor's change adds MODULE_AUTHOR entry for microchip-spi driver
- Krzysztof's change refines dt-bindings

Intel m10 bmc secure update

- Russ's change adds new device ID supported by the driver

All patches have been reviewed on the mailing list, and have been in the
last linux-next releases (as part of our for-next branch).

Signed-off-by: Xu Yilun <yilun.xu@intel.com>

----------------------------------------------------------------
Conor Dooley (1):
      fpga: microchip-spi: add missing module author entry

Dan Carpenter (1):
      fpga: prevent integer overflow in dfl_feature_ioctl_set_irq()

Krzysztof Kozlowski (1):
      dt-bindings: fpga: microchip,mpf-spi-fpga-mgr: use spi-peripheral-props.yaml

Matthew Gerlach (1):
      fpga: dfl-pci: Add IDs for Intel N6000, N6001 and C6100 cards

Russ Weight (1):
      fpga: m10bmc-sec: d5005 bmc secure update driver

 .../bindings/fpga/microchip,mpf-spi-fpga-mgr.yaml      |  7 ++++---
 drivers/fpga/dfl-pci.c                                 | 18 ++++++++++++++++++
 drivers/fpga/dfl.c                                     |  2 +-
 drivers/fpga/intel-m10-bmc-sec-update.c                |  3 +++
 drivers/fpga/microchip-spi.c                           |  1 +
 5 files changed, 27 insertions(+), 4 deletions(-)

Comments

Greg Kroah-Hartman Sept. 21, 2022, 1:28 p.m. UTC | #1
On Mon, Sep 19, 2022 at 01:46:50PM +0800, Xu Yilun wrote:
> The following changes since commit 568035b01cfb107af8d2e4bd2fb9aea22cf5b868:
> 
>   Linux 6.0-rc1 (2022-08-14 15:50:18 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga tags/fpga-for-6.1-rc1
> 
> for you to fetch changes up to 562d0bf2cab80810fa50a1f109a6bdb61c25efc2:
> 
>   fpga: m10bmc-sec: d5005 bmc secure update driver (2022-09-11 15:36:35 +0800)
> 
> ----------------------------------------------------------------
> FPGA Manager changes for 6.1-rc1
> 
> DFL
> 
> - Matthew's change adds new device IDs supported by DFL.
> - Dan's change uses array_size() for memory allocation to prevent
> potential overflow
> 
> Microchip
> 
> - Conor's change adds MODULE_AUTHOR entry for microchip-spi driver
> - Krzysztof's change refines dt-bindings
> 
> Intel m10 bmc secure update
> 
> - Russ's change adds new device ID supported by the driver

In the future, new ids can be added to stable kernels.

thanks,

greg k-h
Greg Kroah-Hartman Sept. 21, 2022, 1:43 p.m. UTC | #2
On Mon, Sep 19, 2022 at 01:46:50PM +0800, Xu Yilun wrote:
> The following changes since commit 568035b01cfb107af8d2e4bd2fb9aea22cf5b868:
> 
>   Linux 6.0-rc1 (2022-08-14 15:50:18 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga tags/fpga-for-6.1-rc1

Pulled and pushed out, thanks.

greg k-h
Xu Yilun Sept. 22, 2022, 1:35 a.m. UTC | #3
On 2022-09-21 at 15:28:35 +0200, Greg KH wrote:
> On Mon, Sep 19, 2022 at 01:46:50PM +0800, Xu Yilun wrote:
> > The following changes since commit 568035b01cfb107af8d2e4bd2fb9aea22cf5b868:
> > 
> >   Linux 6.0-rc1 (2022-08-14 15:50:18 -0700)
> > 
> > are available in the Git repository at:
> > 
> >   git://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga tags/fpga-for-6.1-rc1
> > 
> > for you to fetch changes up to 562d0bf2cab80810fa50a1f109a6bdb61c25efc2:
> > 
> >   fpga: m10bmc-sec: d5005 bmc secure update driver (2022-09-11 15:36:35 +0800)
> > 
> > ----------------------------------------------------------------
> > FPGA Manager changes for 6.1-rc1
> > 
> > DFL
> > 
> > - Matthew's change adds new device IDs supported by DFL.
> > - Dan's change uses array_size() for memory allocation to prevent
> > potential overflow
> > 
> > Microchip
> > 
> > - Conor's change adds MODULE_AUTHOR entry for microchip-spi driver
> > - Krzysztof's change refines dt-bindings
> > 
> > Intel m10 bmc secure update
> > 
> > - Russ's change adds new device ID supported by the driver
> 
> In the future, new ids can be added to stable kernels.

Understood, I find it in kernel doc.

Thanks,
Yilun