mbox series

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

Message ID Ybz51pwucMjutPsA@epycbox.lan (mailing list archive)
State New
Headers show
Series [GIT,PULL] FPGA Manager changes for 5.17-rc1 | expand

Pull-request

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

Message

Moritz Fischer Dec. 17, 2021, 8:57 p.m. UTC
The following changes since commit fa55b7dcdc43c1aa1ba12bca9d2dd4318c2a0dbf:

  Linux 5.16-rc1 (2021-11-14 13:56:52 -0800)

are available in the Git repository at:

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

for you to fetch changes up to 98ceca2f29325d6114ea77be719a68c467c103d6:

  fpga: region: fix kernel-doc (2021-12-09 20:06:54 -0800)

----------------------------------------------------------------
FPGA Manager changes for 5.17-rc1

Russ' patches rework the way we register FPGA managers, regions and
bridges by simplifying the functions into a single register call.

Nathan's patch addresses an unused variable warning that was introduced
by Russ' patches.

Yang's patch addresses a kernel doc warning.

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

Signed-off-by: Moritz Fischer <mdf@kernel.org>

----------------------------------------------------------------
Nathan Chancellor (1):
      fpga: stratix10-soc: Do not use ret uninitialized in s10_probe()

Russ Weight (3):
      fpga: mgr: Use standard dev_release for class driver
      fpga: bridge: Use standard dev_release for class driver
      fpga: region: Use standard dev_release for class driver

Yang Li (1):
      fpga: region: fix kernel-doc

 Documentation/driver-api/fpga/fpga-bridge.rst |   6 +-
 Documentation/driver-api/fpga/fpga-mgr.rst    |  38 +++--
 Documentation/driver-api/fpga/fpga-region.rst |  12 +-
 drivers/fpga/altera-cvp.c                     |  12 +-
 drivers/fpga/altera-fpga2sdram.c              |  12 +-
 drivers/fpga/altera-freeze-bridge.c           |  10 +-
 drivers/fpga/altera-hps2fpga.c                |  12 +-
 drivers/fpga/altera-pr-ip-core.c              |   7 +-
 drivers/fpga/altera-ps-spi.c                  |   9 +-
 drivers/fpga/dfl-fme-br.c                     |  10 +-
 drivers/fpga/dfl-fme-mgr.c                    |  22 ++-
 drivers/fpga/dfl-fme-region.c                 |  17 +-
 drivers/fpga/dfl.c                            |  12 +-
 drivers/fpga/fpga-bridge.c                    | 122 ++++-----------
 drivers/fpga/fpga-mgr.c                       | 215 +++++++++++---------------
 drivers/fpga/fpga-region.c                    | 119 ++++++--------
 drivers/fpga/ice40-spi.c                      |   9 +-
 drivers/fpga/machxo2-spi.c                    |   9 +-
 drivers/fpga/of-fpga-region.c                 |  12 +-
 drivers/fpga/socfpga-a10.c                    |  16 +-
 drivers/fpga/socfpga.c                        |   9 +-
 drivers/fpga/stratix10-soc.c                  |  18 +--
 drivers/fpga/ts73xx-fpga.c                    |   9 +-
 drivers/fpga/versal-fpga.c                    |   9 +-
 drivers/fpga/xilinx-pr-decoupler.c            |  17 +-
 drivers/fpga/xilinx-spi.c                     |  11 +-
 drivers/fpga/zynq-fpga.c                      |  16 +-
 drivers/fpga/zynqmp-fpga.c                    |   9 +-
 include/linux/fpga/fpga-bridge.h              |  30 ++--
 include/linux/fpga/fpga-mgr.h                 |  62 +++++---
 include/linux/fpga/fpga-region.h              |  36 +++--
 31 files changed, 388 insertions(+), 519 deletions(-)

Comments

Greg Kroah-Hartman Dec. 21, 2021, 9:06 a.m. UTC | #1
On Fri, Dec 17, 2021 at 12:57:58PM -0800, Moritz Fischer wrote:
> The following changes since commit fa55b7dcdc43c1aa1ba12bca9d2dd4318c2a0dbf:
> 
>   Linux 5.16-rc1 (2021-11-14 13:56:52 -0800)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga tags/fpga-for-5.17-rc1

Pulled and pushed out, thanks.

greg k-h