mbox series

[00/10] drm/tinydrm: Remove tinydrm.ko

Message ID 20190717115817.30110-1-noralf@tronnes.org (mailing list archive)
Headers show
Series drm/tinydrm: Remove tinydrm.ko | expand

Message

Noralf Trønnes July 17, 2019, 11:58 a.m. UTC
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

Comments

Sam Ravnborg July 17, 2019, 1:31 p.m. UTC | #1
Hi Noralf.

Nice series of patches!



On Wed, Jul 17, 2019 at 01:58:07PM +0200, Noralf Trønnes wrote:
> 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
> 

Patch 1-3, 7, 8, 9 are:
Reviewed-by: Sam Ravnborg <sam@ravnborg.org>

Patch 4 are:
Acked-by: Sam Ravnborg <sam@ravnborg.org>
(Did not feel I had enough background to say r-b).

Individual comments sent for the other patches.

	Sam
Noralf Trønnes July 17, 2019, 4:22 p.m. UTC | #2
Den 17.07.2019 15.31, skrev Sam Ravnborg:
> Hi Noralf.
> 
> Nice series of patches!
> 
> 
> 
> On Wed, Jul 17, 2019 at 01:58:07PM +0200, Noralf Trønnes wrote:
>> 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
>>
> 
> Patch 1-3, 7, 8, 9 are:
> Reviewed-by: Sam Ravnborg <sam@ravnborg.org>
> 
> Patch 4 are:
> Acked-by: Sam Ravnborg <sam@ravnborg.org>
> (Did not feel I had enough background to say r-b).
> 
> Individual comments sent for the other patches.
> 

Thanks for your review Sam!

Noralf.