All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/10] drm/tinydrm: Remove tinydrm.ko
@ 2019-07-17 11:58 Noralf Trønnes
  2019-07-17 11:58 ` [PATCH 01/10] drm: Add SPI connector type Noralf Trønnes
                   ` (10 more replies)
  0 siblings, 11 replies; 33+ messages in thread
From: Noralf Trønnes @ 2019-07-17 11:58 UTC (permalink / raw)
  To: dri-devel; +Cc: david

This series removes the remaining bits of tinydrm.ko.

There's only one item left on the tinydrm todo list and that is moving
out mipi_dbi.

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 (10):
  drm: Add SPI connector type
  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

 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              |  32 +--
 drivers/gpu/drm/tinydrm/st7735r.c             |   1 -
 include/drm/tinydrm/mipi-dbi.h                |  22 +-
 include/drm/tinydrm/tinydrm-helpers.h         |  75 ------
 include/uapi/drm/drm_mode.h                   |   1 +
 18 files changed, 285 insertions(+), 573 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

-- 
2.20.1

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 33+ messages in thread

end of thread, other threads:[~2019-07-25 14:29 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-07-17 11:58 [PATCH 00/10] drm/tinydrm: Remove tinydrm.ko Noralf Trønnes
2019-07-17 11:58 ` [PATCH 01/10] drm: Add SPI connector type Noralf Trønnes
2019-07-17 19:24   ` David Lechner
2019-07-19  9:17   ` Daniel Vetter
2019-07-19 12:34     ` Noralf Trønnes
2019-07-19 12:39       ` Daniel Vetter
2019-07-17 11:58 ` [PATCH 02/10] drm/tinydrm: Use spi_is_bpw_supported() Noralf Trønnes
2019-07-17 11:58 ` [PATCH 03/10] drm/tinydrm: Remove spi debug buffer dumping Noralf Trønnes
2019-07-17 11:58 ` [PATCH 04/10] drm/tinydrm: Remove tinydrm_spi_max_transfer_size() Noralf Trønnes
2019-07-17 11:58 ` [PATCH 05/10] drm/tinydrm: Clean up tinydrm_spi_transfer() Noralf Trønnes
2019-07-17 13:09   ` Sam Ravnborg
2019-07-17 16:18     ` Noralf Trønnes
2019-07-17 18:13       ` Sam Ravnborg
2019-07-17 19:37   ` David Lechner
2019-07-17 11:58 ` [PATCH 06/10] drm/tinydrm: Move tinydrm_spi_transfer() Noralf Trønnes
2019-07-17 13:15   ` Sam Ravnborg
2019-07-17 16:20     ` Noralf Trønnes
2019-07-17 19:48   ` David Lechner
2019-07-18 12:14     ` Noralf Trønnes
2019-07-25 14:16       ` Noralf Trønnes
2019-07-25 14:29         ` David Lechner
2019-07-17 11:58 ` [PATCH 07/10] drm/tinydrm: Move tinydrm_machine_little_endian() Noralf Trønnes
2019-07-17 20:09   ` David Lechner
2019-07-18 12:20     ` Noralf Trønnes
2019-07-17 11:58 ` [PATCH 08/10] drm/tinydrm/repaper: Don't use tinydrm_display_pipe_init() Noralf Trønnes
2019-07-17 11:58 ` [PATCH 09/10] drm/tinydrm/mipi-dbi: Add mipi_dbi_init_with_formats() Noralf Trønnes
2019-07-17 20:38   ` David Lechner
2019-07-17 11:58 ` [PATCH 10/10] drm/tinydrm: Move tinydrm_display_pipe_init() to mipi-dbi Noralf Trønnes
2019-07-17 13:34   ` Sam Ravnborg
2019-07-17 20:46   ` David Lechner
2019-07-18 12:27     ` Noralf Trønnes
2019-07-17 13:31 ` [PATCH 00/10] drm/tinydrm: Remove tinydrm.ko Sam Ravnborg
2019-07-17 16:22   ` Noralf Trønnes

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.