Message ID | 20201103015028.GA3548@epycbox.lan (mailing list archive) |
---|---|
State | Superseded, archived |
Headers | show |
Series | [GIT,PULL] FPGA DFL Modularization changes for 5.11 | expand |
On Mon, Nov 02, 2020 at 05:50:28PM -0800, Moritz Fischer wrote: > The following changes since commit 3650b228f83adda7e5ee532e2b90429c03f7b9ec: > > Linux 5.10-rc1 (2020-10-25 15:14:11 -0700) > > are available in the Git repository at: > > git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git/ tags/dfl-modularization-for-5.11 Given my "issues" that I have had with this series in the past, can you send this as patches so I can properly review them and apply them if all is ok instead? thanks, greg k-h
The following changes since commit 3650b228f83adda7e5ee532e2b90429c03f7b9ec: Linux 5.10-rc1 (2020-10-25 15:14:11 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git/ tags/dfl-modularization-for-5.11 for you to fetch changes up to b816f126cfe5842fa21f49ff851c357497c38d5a: fpga: dfl: move dfl bus related APIs to include/linux/dfl.h (2020-10-26 10:13:24 -0700) ---------------------------------------------------------------- First set of DFL changes for 5.11-rc1 merge window These are on a separate branch to enable other Maintainers to pull this tag to allow for taking DFL patches through their trees. Modularization - Xu's changes add the functionality to add DFL devices on the DFL bus as separate modules. All patches have been reviewed on the mailing list, and have been in the last linux-next releases (as part of my for-next branch) without issues. Signed-off-by: Moritz Fischer <mdf@kernel.org> ---------------------------------------------------------------- Xu Yilun (4): fpga: dfl: fix the definitions of type & feature_id for dfl devices fpga: dfl: move dfl_device_id to mod_devicetable.h fpga: dfl: add dfl bus support to MODULE_DEVICE_TABLE() fpga: dfl: move dfl bus related APIs to include/linux/dfl.h MAINTAINERS | 1 + drivers/fpga/dfl.c | 4 +- drivers/fpga/dfl.h | 85 +------------------------------------- include/linux/dfl.h | 86 +++++++++++++++++++++++++++++++++++++++ include/linux/mod_devicetable.h | 24 +++++++++++ scripts/mod/devicetable-offsets.c | 4 ++ scripts/mod/file2alias.c | 13 ++++++ 7 files changed, 131 insertions(+), 86 deletions(-) create mode 100644 include/linux/dfl.h