* [PATCH] staging: goldfish: Prefer kernel type u32 over uint32_t
@ 2015-09-02 20:01 Ravi Teja Darbha
0 siblings, 0 replies; only message in thread
From: Ravi Teja Darbha @ 2015-09-02 20:01 UTC (permalink / raw)
To: gregkh
Cc: loic, alan, peter.senna, ricardo.ribalda, somyaanand214,
mahfouz.saif.elyazal, devel, linux-kernel
Prefer kernel type u32 over uint32_t to maintain uniformity.
Signed-off-by: Ravi Teja Darbha <ravi2j@gmail.com>
---
drivers/staging/goldfish/goldfish_nand_reg.h | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/staging/goldfish/goldfish_nand_reg.h b/drivers/staging/goldfish/goldfish_nand_reg.h
index fe7f47c..43aeba3 100644
--- a/drivers/staging/goldfish/goldfish_nand_reg.h
+++ b/drivers/staging/goldfish/goldfish_nand_reg.h
@@ -66,11 +66,11 @@ enum nand_reg {
};
struct cmd_params {
- uint32_t dev;
- uint32_t addr_low;
- uint32_t addr_high;
- uint32_t transfer_size;
+ u32 dev;
+ u32 addr_low;
+ u32 addr_high;
+ u32 transfer_size;
unsigned long data;
- uint32_t result;
+ u32 result;
};
#endif
--
1.9.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2015-09-02 20:01 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-02 20:01 [PATCH] staging: goldfish: Prefer kernel type u32 over uint32_t Ravi Teja Darbha
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).