linux-omap.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH -next] ARM: OMAP: Use DEFINE_SPINLOCK() for spinlock
@ 2021-03-27  9:52 Chen Lifu
  2021-03-31  5:59 ` Tony Lindgren
  0 siblings, 1 reply; 3+ messages in thread
From: Chen Lifu @ 2021-03-27  9:52 UTC (permalink / raw)
  To: chenlifu, Aaro Koskinen, Tony Lindgren, Russell King
  Cc: heying24, yuehaibing, weiyongjun1, johnny.chenyi,
	linux-arm-kernel, linux-kernel, linux-omap, kernel-janitors

From: Lifu Chen <chenlifu@huawei.com>

spinlock can be initialized automatically with DEFINE_SPINLOCK()
rather than explicitly calling spin_lock_init().

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Lifu Chen <chenlifu@huawei.com>
---
 arch/arm/plat-omap/dma.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/arch/arm/plat-omap/dma.c b/arch/arm/plat-omap/dma.c
index 1eb59003bdec..9f11de46aaa9 100644
--- a/arch/arm/plat-omap/dma.c
+++ b/arch/arm/plat-omap/dma.c
@@ -85,7 +85,7 @@ static int dma_lch_count;
 static int dma_chan_count;
 static int omap_dma_reserve_channels;
 
-static spinlock_t dma_chan_lock;
+static DEFINE_SPINLOCK(dma_chan_lock);
 static struct omap_dma_lch *dma_chan;
 
 static inline void disable_lnk(int lch);
@@ -902,7 +902,6 @@ static int omap_system_dma_probe(struct platform_device *pdev)
 	if (!dma_chan)
 		return -ENOMEM;
 
-	spin_lock_init(&dma_chan_lock);
 	for (ch = 0; ch < dma_chan_count; ch++) {
 		omap_clear_dma(ch);
 


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

end of thread, other threads:[~2021-03-31  9:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-27  9:52 [PATCH -next] ARM: OMAP: Use DEFINE_SPINLOCK() for spinlock Chen Lifu
2021-03-31  5:59 ` Tony Lindgren
2021-03-31  9:03   ` chenlifu

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).