Message ID | 20190719155916.62465-1-noralf@tronnes.org (mailing list archive) |
---|---|
Headers | show |
Series | drm/tinydrm: Remove tinydrm.ko | expand |
Den 19.07.2019 17.59, skrev Noralf Trønnes: > This series removes the remaining bits of tinydrm.ko. > > Changes: > - Split SPI connector type patch in core and driver changes, expand > commit message (Daniel) > - Drop moving the mipi_dbi_spi_init() declaration (Sam) > - st7586: Forgot to remove the mipi->rotation assignment > > Note: > This depends on a commit that just entered Linus' tree: > e6f3f7e4dc76 ("spi: Add spi_is_bpw_supported()") > > Series is also available here: > https://github.com/notro/linux/tree/remove_tinydrm_ko > > Noralf. > > Noralf Trønnes (11): > drm: Add SPI connector type > drm/tinydrm: Use DRM_MODE_CONNECTOR_SPI > drm/tinydrm: Use spi_is_bpw_supported() > drm/tinydrm: Remove spi debug buffer dumping > drm/tinydrm: Remove tinydrm_spi_max_transfer_size() > drm/tinydrm: Clean up tinydrm_spi_transfer() > drm/tinydrm: Move tinydrm_spi_transfer() > drm/tinydrm: Move tinydrm_machine_little_endian() > drm/tinydrm/repaper: Don't use tinydrm_display_pipe_init() > drm/tinydrm/mipi-dbi: Add mipi_dbi_init_with_formats() > drm/tinydrm: Move tinydrm_display_pipe_init() to mipi-dbi Series applied to drm-misc-next, thanks for review and testing! Noralf. > > Documentation/gpu/tinydrm.rst | 12 - > Documentation/gpu/todo.rst | 3 - > drivers/gpu/drm/drm_connector.c | 1 + > drivers/gpu/drm/tinydrm/Makefile | 1 - > drivers/gpu/drm/tinydrm/core/Makefile | 4 - > .../gpu/drm/tinydrm/core/tinydrm-helpers.c | 207 -------------- > drivers/gpu/drm/tinydrm/core/tinydrm-pipe.c | 179 ------------ > drivers/gpu/drm/tinydrm/hx8357d.c | 1 - > drivers/gpu/drm/tinydrm/ili9225.c | 5 +- > drivers/gpu/drm/tinydrm/ili9341.c | 1 - > drivers/gpu/drm/tinydrm/mi0283qt.c | 1 - > drivers/gpu/drm/tinydrm/mipi-dbi.c | 254 ++++++++++++++---- > drivers/gpu/drm/tinydrm/repaper.c | 58 +++- > drivers/gpu/drm/tinydrm/st7586.c | 33 +-- > drivers/gpu/drm/tinydrm/st7735r.c | 1 - > include/drm/tinydrm/mipi-dbi.h | 18 ++ > include/drm/tinydrm/tinydrm-helpers.h | 75 ------ > include/uapi/drm/drm_mode.h | 1 + > 18 files changed, 283 insertions(+), 572 deletions(-) > delete mode 100644 drivers/gpu/drm/tinydrm/core/Makefile > delete mode 100644 drivers/gpu/drm/tinydrm/core/tinydrm-helpers.c > delete mode 100644 drivers/gpu/drm/tinydrm/core/tinydrm-pipe.c > delete mode 100644 include/drm/tinydrm/tinydrm-helpers.h >