All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/8] Fix struct clk pointer comparing
@ 2015-02-25 14:53 ` Shawn Guo
  0 siblings, 0 replies; 84+ messages in thread
From: Shawn Guo @ 2015-02-25 14:53 UTC (permalink / raw)
  To: Mike Turquette
  Cc: linux-pwm, alsa-devel, Russell King, linux-serial,
	Greg Kroah-Hartman, Mark Brown, Stephen Boyd, dri-devel, kernel,
	linux-arm-kernel

On the first day back from Chinese new year holiday, I got a regression
report from rmk, saying Ethernet stops working on HimmingBoard with
v4.0-rc1.

I read through the thread [1] and found a couple of i.MX audio drivers
are also affected per Stephen's Coccinelle report.  That's why I came up
with this series based on Quentin's structclk.cocci, Stephen's result
and Mike's input (thanks all).

The first two patches are run-time tested and all others are
compile-tested only.

[1] http://thread.gmane.org/gmane.linux.kernel/1872604/focus=1880862

Shawn Guo (8):
  clk: add helper function clk_is_match()
  ARM: imx: fix struct clk pointer comparing
  drm: armada: fix struct clk pointer comparing
  pwm: atmel-hlcdc: fix struct clk pointer comparing
  serial: samsung: fix struct clk pointer comparing
  ASoC: fsl_esai: fix struct clk pointer comparing
  ASoC: fsl_spdif: fix struct clk pointer comparing
  ASoC: kirkwood: fix struct clk pointer comparing

 arch/arm/mach-imx/mach-imx6q.c      |  5 +++--
 drivers/clk/clk.c                   |  6 ++++++
 drivers/gpu/drm/armada/armada_510.c |  2 +-
 drivers/pwm/pwm-atmel-hlcdc.c       |  2 +-
 drivers/tty/serial/samsung.c        |  2 +-
 include/linux/clk.h                 | 16 ++++++++++++++++
 sound/soc/fsl/fsl_esai.c            |  2 +-
 sound/soc/fsl/fsl_spdif.c           |  4 ++--
 sound/soc/kirkwood/kirkwood-i2s.c   |  2 +-
 9 files changed, 32 insertions(+), 9 deletions(-)

-- 
1.9.1

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

^ permalink raw reply	[flat|nested] 84+ messages in thread
* Re: [PATCH 4/8] pwm: atmel-hlcdc: fix struct clk pointer comparing
@ 2022-11-07  9:01 Cc Carnaghi
  0 siblings, 0 replies; 84+ messages in thread
From: Cc Carnaghi @ 2022-11-07  9:01 UTC (permalink / raw)
  To: dri-devel

[-- Attachment #1: Type: text/plain, Size: 1 bytes --]



[-- Attachment #2: Type: text/html, Size: 23 bytes --]

^ permalink raw reply	[flat|nested] 84+ messages in thread
* Re: [PATCH 4/8] pwm: atmel-hlcdc: fix struct clk pointer comparing
@ 2022-11-07 14:00 Cc Carnaghi
  0 siblings, 0 replies; 84+ messages in thread
From: Cc Carnaghi @ 2022-11-07 14:00 UTC (permalink / raw)
  To: dri-devel

[-- Attachment #1: Type: text/plain, Size: 3 bytes --]

Mr

[-- Attachment #2: Type: text/html, Size: 25 bytes --]

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

end of thread, other threads:[~2022-11-08  0:03 UTC | newest]

Thread overview: 84+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-25 14:53 [PATCH 0/8] Fix struct clk pointer comparing Shawn Guo
2015-02-25 14:53 ` Shawn Guo
2015-02-25 14:53 ` [PATCH 1/8] clk: add helper function clk_is_match() Shawn Guo
2015-02-25 14:53   ` Shawn Guo
2015-02-25 17:27   ` Mike Turquette
2015-02-25 17:27     ` Mike Turquette
2015-02-26  0:37     ` Shawn Guo
2015-02-26  0:37       ` Shawn Guo
2015-02-26  9:02     ` Ben Dooks
2015-02-26  9:02       ` [alsa-devel] " Ben Dooks
2015-02-26  9:56       ` Philipp Zabel
2015-02-26  9:56         ` Philipp Zabel
2015-02-26 11:25         ` Ben Dooks
2015-02-26 11:25           ` Ben Dooks
2015-02-26 11:59           ` Ricard Wanderlof
2015-02-26 11:59             ` Ricard Wanderlof
2015-03-04  8:55     ` Geert Uytterhoeven
2015-03-04  8:55       ` Geert Uytterhoeven
2015-03-04  9:51     ` Russell King - ARM Linux
2015-03-04  9:51       ` Russell King - ARM Linux
2015-03-08 21:05     ` [PATCH] clk: provide clk_is_match() dummy for non-common clk Arnd Bergmann
2015-03-08 21:05       ` Arnd Bergmann
2015-03-10 21:42       ` Geert Uytterhoeven
2015-03-10 21:42         ` Geert Uytterhoeven
2015-03-11  7:09       ` Uwe Kleine-König
2015-03-11  7:09         ` Uwe Kleine-König
2015-03-11 10:22       ` Russell King - ARM Linux
2015-03-11 10:22         ` Russell King - ARM Linux
2015-03-11 11:17         ` Uwe Kleine-König
2015-03-11 11:17           ` Uwe Kleine-König
2015-03-11 12:29           ` Russell King - ARM Linux
2015-03-11 12:29             ` Russell King - ARM Linux
2015-03-12  0:35             ` Stephen Boyd
2015-03-12  0:35               ` Stephen Boyd
2015-02-25 14:53 ` [PATCH 2/8] ARM: imx: fix struct clk pointer comparing Shawn Guo
2015-02-25 14:53   ` Shawn Guo
2015-02-25 14:53 ` [PATCH 3/8] drm: armada: " Shawn Guo
2015-02-25 14:53   ` Shawn Guo
2015-02-25 14:53 ` [PATCH 4/8] pwm: atmel-hlcdc: " Shawn Guo
2015-02-25 14:53   ` Shawn Guo
2015-02-26  9:22   ` Nicolas Ferre
2015-02-26  9:22     ` Nicolas Ferre
2015-02-26  9:31     ` Boris Brezillon
2015-02-26  9:31       ` Boris Brezillon
2015-03-11 10:54   ` Thierry Reding
2015-03-11 10:54     ` Thierry Reding
2015-02-25 14:53 ` [PATCH 5/8] serial: samsung: " Shawn Guo
2015-02-25 14:53   ` Shawn Guo
2015-02-25 14:53 ` [PATCH 6/8] ASoC: fsl_esai: " Shawn Guo
2015-02-25 14:53   ` Shawn Guo
2015-02-26  2:36   ` Mark Brown
2015-02-26  2:36     ` Mark Brown
2015-02-25 14:53 ` [PATCH 7/8] ASoC: fsl_spdif: " Shawn Guo
2015-02-25 14:53   ` Shawn Guo
2015-02-25 21:04   ` Stephen Boyd
2015-02-25 21:04     ` Stephen Boyd
2015-02-26  1:17     ` Shawn Guo
2015-02-26  1:17       ` Shawn Guo
2015-02-26  2:12   ` Mark Brown
2015-02-26  2:12     ` Mark Brown
2015-02-26  2:20     ` Shawn Guo
2015-02-26  2:20       ` Shawn Guo
2015-02-26  2:29       ` Mark Brown
2015-02-26  2:29         ` Mark Brown
2015-02-26  2:36   ` Mark Brown
2015-02-26  2:36     ` Mark Brown
2015-02-25 14:53 ` [PATCH 8/8] ASoC: kirkwood: " Shawn Guo
2015-02-25 14:53   ` Shawn Guo
2015-02-26  2:12   ` Mark Brown
2015-02-26  2:12     ` Mark Brown
2015-02-26  2:36   ` Mark Brown
2015-02-26  2:36     ` Mark Brown
2015-02-25 15:03 ` [PATCH 0/8] Fix " Russell King - ARM Linux
2015-02-25 15:03   ` Russell King - ARM Linux
2015-02-25 17:55   ` Mike Turquette
2015-02-25 17:55     ` Mike Turquette
2015-02-25 20:42     ` Stephen Boyd
2015-02-25 20:42       ` Stephen Boyd
2015-02-26  1:21       ` Shawn Guo
2015-02-26  1:21         ` Shawn Guo
2015-02-26  1:24       ` Mike Turquette
2015-02-26  1:24         ` Mike Turquette
  -- strict thread matches above, loose matches on Subject: below --
2022-11-07  9:01 [PATCH 4/8] pwm: atmel-hlcdc: fix " Cc Carnaghi
2022-11-07 14:00 Cc Carnaghi

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.