public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 1/4] drm/lima: Mark 64-bit number as ULL to silence Smatch warning
@ 2019-06-21 16:21 Krzysztof Kozlowski
  2019-06-21 16:21 ` [PATCH v2 2/4] drm/lima: Reduce the amount of logs on deferred probe Krzysztof Kozlowski
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Krzysztof Kozlowski @ 2019-06-21 16:21 UTC (permalink / raw)
  To: Qiang Yu, David Airlie, Daniel Vetter, dri-devel, lima,
	linux-kernel
  Cc: Krzysztof Kozlowski

Mark long numbers with ULL to silence the Smatch warning:

    drivers/gpu/drm/lima/lima_device.c:314:32: warning: constant 0x100000000 is so big it is long long

Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Reviewed-by: Qiang Yu <yuq825@gmail.com>

---

Changes since v1:
1. Add reviewed-by tag
---
 drivers/gpu/drm/lima/lima_vm.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/lima/lima_vm.h b/drivers/gpu/drm/lima/lima_vm.h
index caee2f8a29b4..e0bdedcf14dd 100644
--- a/drivers/gpu/drm/lima/lima_vm.h
+++ b/drivers/gpu/drm/lima/lima_vm.h
@@ -15,9 +15,9 @@
 #define LIMA_VM_NUM_PT_PER_BT (1 << LIMA_VM_NUM_PT_PER_BT_SHIFT)
 #define LIMA_VM_NUM_BT (LIMA_PAGE_ENT_NUM >> LIMA_VM_NUM_PT_PER_BT_SHIFT)
 
-#define LIMA_VA_RESERVE_START  0xFFF00000
+#define LIMA_VA_RESERVE_START  0x0FFF00000ULL
 #define LIMA_VA_RESERVE_DLBU   LIMA_VA_RESERVE_START
-#define LIMA_VA_RESERVE_END    0x100000000
+#define LIMA_VA_RESERVE_END    0x100000000ULL
 
 struct lima_device;
 
-- 
2.17.1


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

end of thread, other threads:[~2019-06-23  2:48 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-06-21 16:21 [PATCH v2 1/4] drm/lima: Mark 64-bit number as ULL to silence Smatch warning Krzysztof Kozlowski
2019-06-21 16:21 ` [PATCH v2 2/4] drm/lima: Reduce the amount of logs on deferred probe Krzysztof Kozlowski
2019-06-21 16:21 ` [PATCH v2 3/4] drm/lima: Reduce number of PTR_ERR() calls Krzysztof Kozlowski
2019-06-21 16:21 ` [PATCH v2 4/4] drm/lima: Reduce the amount of logs on deferred probe of clocks and reset controller Krzysztof Kozlowski
2019-06-23  2:42 ` [PATCH v2 1/4] drm/lima: Mark 64-bit number as ULL to silence Smatch warning Qiang Yu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox