linux-spi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1 00/10] spi: dw: bug fix and clean up series
@ 2015-10-14 20:12 Andy Shevchenko
       [not found] ` <1444853545-59868-1-git-send-email-andriy.shevchenko-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
  0 siblings, 1 reply; 21+ messages in thread
From: Andy Shevchenko @ 2015-10-14 20:12 UTC (permalink / raw)
  To: linux-spi-u79uwXL29TY76Z2rM5mHXA, Mark Brown; +Cc: Andy Shevchenko

The first patch is a regression fix, second one a little fix(no need to
backport). The rest is clean up part, in particularly follow up to what
previously Jarkko started.

The driver has been tested on Intel MID platform in DMA and PIO modes.

Andy Shevchenko (10):
  spi: dw: explicitly free IRQ handler in dw_spi_remove_host()
  spi: dw: use plain struct device * at earlier ->probe()
  spi: dw: remove unneeded cr0 member of struct chip_data
  spi: dw: remove a NULL check when call ->remove()
  spi: dw: remove bits_per_word member of struct chip_data
  spi: dw: eliminate speed variable in ->transfer_one()
  spi: dw: eliminate unused threshold variables
  spi: dw: introduce spi_shutdown_chip()
  spi: dw-pci: remove unused pdev member from struct dw_spi_pci
  spi: dw-mmio: convert to unified device property API

 drivers/spi/spi-dw-mmio.c |  7 +++--
 drivers/spi/spi-dw-pci.c  | 29 +++++++-------------
 drivers/spi/spi-dw.c      | 68 +++++++++++++----------------------------------
 drivers/spi/spi-dw.h      |  6 +++++
 4 files changed, 37 insertions(+), 73 deletions(-)

-- 
2.5.3

--
To unsubscribe from this list: send the line "unsubscribe linux-spi" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2015-10-19 19:43 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-14 20:12 [PATCH v1 00/10] spi: dw: bug fix and clean up series Andy Shevchenko
     [not found] ` <1444853545-59868-1-git-send-email-andriy.shevchenko-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
2015-10-14 20:12   ` [PATCH v1 01/10] spi: dw: explicitly free IRQ handler in dw_spi_remove_host() Andy Shevchenko
     [not found]     ` <1444853545-59868-2-git-send-email-andriy.shevchenko-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
2015-10-19 19:29       ` Mark Brown
2015-10-14 20:12   ` [PATCH v1 02/10] spi: dw: use plain struct device * at earlier ->probe() Andy Shevchenko
     [not found]     ` <1444853545-59868-3-git-send-email-andriy.shevchenko-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
2015-10-19 19:43       ` Applied "spi: dw: use plain struct device * at earlier ->probe()" to the spi tree Mark Brown
2015-10-14 20:12   ` [PATCH v1 03/10] spi: dw: remove unneeded cr0 member of struct chip_data Andy Shevchenko
     [not found]     ` <1444853545-59868-4-git-send-email-andriy.shevchenko-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
2015-10-19 19:43       ` Applied "spi: dw: remove unneeded cr0 member of struct chip_data" to the spi tree Mark Brown
2015-10-14 20:12   ` [PATCH v1 04/10] spi: dw: remove a NULL check when call ->remove() Andy Shevchenko
     [not found]     ` <1444853545-59868-5-git-send-email-andriy.shevchenko-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
2015-10-19 19:32       ` Mark Brown
2015-10-14 20:12   ` [PATCH v1 05/10] spi: dw: remove bits_per_word member of struct chip_data Andy Shevchenko
     [not found]     ` <1444853545-59868-6-git-send-email-andriy.shevchenko-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
2015-10-19 19:43       ` Applied "spi: dw: remove bits_per_word member of struct chip_data" to the spi tree Mark Brown
2015-10-14 20:12   ` [PATCH v1 06/10] spi: dw: eliminate speed variable in ->transfer_one() Andy Shevchenko
     [not found]     ` <1444853545-59868-7-git-send-email-andriy.shevchenko-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
2015-10-19 19:43       ` Applied "spi: dw: eliminate speed variable in ->transfer_one()" to the spi tree Mark Brown
2015-10-14 20:12   ` [PATCH v1 07/10] spi: dw: eliminate unused threshold variables Andy Shevchenko
     [not found]     ` <1444853545-59868-8-git-send-email-andriy.shevchenko-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
2015-10-19 19:43       ` Applied "spi: dw: eliminate unused threshold variables" to the spi tree Mark Brown
2015-10-14 20:12   ` [PATCH v1 08/10] spi: dw: introduce spi_shutdown_chip() Andy Shevchenko
     [not found]     ` <1444853545-59868-9-git-send-email-andriy.shevchenko-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
2015-10-19 19:43       ` Applied "spi: dw: introduce spi_shutdown_chip()" to the spi tree Mark Brown
2015-10-14 20:12   ` [PATCH v1 09/10] spi: dw-pci: remove unused pdev member from struct dw_spi_pci Andy Shevchenko
     [not found]     ` <1444853545-59868-10-git-send-email-andriy.shevchenko-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
2015-10-19 19:43       ` Applied "spi: dw-pci: remove unused pdev member from struct dw_spi_pci" to the spi tree Mark Brown
2015-10-14 20:12   ` [PATCH v1 10/10] spi: dw-mmio: convert to unified device property API Andy Shevchenko
     [not found]     ` <1444853545-59868-11-git-send-email-andriy.shevchenko-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
2015-10-19 19:43       ` Applied "spi: dw-mmio: convert to unified device property API" to the spi tree Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).