All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/4] staging: ralink-gdma: Fix type warning
@ 2019-03-05 12:49 Daniela Mormocea
  2019-03-05 12:50 ` [PATCH v2 1/4] staging: ralink-gdma: Avoid unnecessary line continuations in string Daniela Mormocea
                   ` (4 more replies)
  0 siblings, 5 replies; 8+ messages in thread
From: Daniela Mormocea @ 2019-03-05 12:49 UTC (permalink / raw)
  To: outreachy-kernel; +Cc: Daniela Mormocea

Complete unsigned int type as indicated by checkpatch

Signed-off-by: Daniela Mormocea <daniela.mormocea@gmail.com>
---

Changes in v2:
-make these a patch series

 drivers/staging/ralink-gdma/ralink-gdma.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/ralink-gdma/ralink-gdma.c b/drivers/staging/ralink-gdma/ralink-gdma.c
index d78042e..7dada05 100644
--- a/drivers/staging/ralink-gdma/ralink-gdma.c
+++ b/drivers/staging/ralink-gdma/ralink-gdma.c
@@ -164,7 +164,7 @@ static inline uint32_t gdma_dma_read(struct gdma_dma_dev *dma_dev,
 }
 
 static inline void gdma_dma_write(struct gdma_dma_dev *dma_dev,
-				  unsigned reg, uint32_t val)
+				  unsigned int reg, uint32_t val)
 {
 	writel(val, dma_dev->base + reg);
 }
-- 
2.7.4



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

end of thread, other threads:[~2019-03-06  9:14 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-05 12:49 [PATCH v2 0/4] staging: ralink-gdma: Fix type warning Daniela Mormocea
2019-03-05 12:50 ` [PATCH v2 1/4] staging: ralink-gdma: Avoid unnecessary line continuations in string Daniela Mormocea
2019-03-05 12:53 ` [PATCH v2 2/4] staging: ralink-gdma: Replace from uint32_t to u32 Daniela Mormocea
2019-03-05 12:55 ` [PATCH v2 3/4] staging: ralink-gdma: Avoid unnecessary line continuations Daniela Mormocea
2019-03-05 12:57 ` [PATCH v2 4/4] staging: ralink-gdma: Remove whitespace and add blank line Daniela Mormocea
2019-03-05 14:43   ` [Outreachy kernel] " Greg KH
2019-03-05 15:05 ` [PATCH v3 4/4] Fix unnecessary space after cast Daniela Mormocea
2019-03-06  9:14   ` [Outreachy kernel] " Greg KH

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.