mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 22:23:27 +00:00
8299d1f057
Rebased RPi foundation patches on linux 5.10.59, removed applied and reverted patches, wireless patches and defconfig patches. bcm2708: boot tested on RPi B+ v1.2 bcm2709: boot tested on RPi 4B v1.1 4G bcm2711: boot tested on RPi 4B v1.1 4G Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
25 lines
804 B
Diff
25 lines
804 B
Diff
From 1ade3c32d515dba5afa50f389d374b19d1b76cdb Mon Sep 17 00:00:00 2001
|
|
From: Dave Stevenson <dave.stevenson@raspberrypi.org>
|
|
Date: Thu, 24 Jan 2019 15:09:28 +0000
|
|
Subject: [PATCH] clk: clk-bcm2835: Use %zd when printing size_t
|
|
|
|
The debug text for how many clocks have been registered
|
|
uses "%d" with a size_t. Correct it to "%zd".
|
|
|
|
Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.org>
|
|
---
|
|
drivers/clk/bcm/clk-bcm2835.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/drivers/clk/bcm/clk-bcm2835.c
|
|
+++ b/drivers/clk/bcm/clk-bcm2835.c
|
|
@@ -2382,7 +2382,7 @@ static int bcm2835_clk_probe(struct plat
|
|
return ret;
|
|
|
|
/* note that we have registered all the clocks */
|
|
- dev_dbg(dev, "registered %d clocks\n", asize);
|
|
+ dev_dbg(dev, "registered %zd clocks\n", asize);
|
|
|
|
return 0;
|
|
}
|