diff options
author | Klaus Goger | 2017-09-15 14:46:04 +0200 |
---|---|---|
committer | Philipp Tomsich | 2017-09-18 20:40:38 +0200 |
commit | 60d7c50945d65185a5c86c4f52d4671fb59292e3 (patch) | |
tree | f690ae1094a6b8e8bde4471a0c59cd8c33cf78c9 /board/theobroma-systems | |
parent | 6e5bd8d6f34445958eba1203999cd3e1475791ac (diff) |
rockchip: puma_rk3399: increase serialno_str size
Increase serialno_str to 17 bytes so it can hold the 16 bytes long serial
nummer and the terminating null byte added by snprintf.
Signed-off-by: Klaus Goger <klaus.goger@theobroma-systems.com>
Diffstat (limited to 'board/theobroma-systems')
-rw-r--r-- | board/theobroma-systems/puma_rk3399/puma-rk3399.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/theobroma-systems/puma_rk3399/puma-rk3399.c b/board/theobroma-systems/puma_rk3399/puma-rk3399.c index c6f8eed0c98..45d56cd99eb 100644 --- a/board/theobroma-systems/puma_rk3399/puma-rk3399.c +++ b/board/theobroma-systems/puma_rk3399/puma-rk3399.c @@ -107,7 +107,7 @@ static void setup_serial(void) u8 low[cpuid_length/2], high[cpuid_length/2]; char cpuid_str[cpuid_length * 2 + 1]; u64 serialno; - char serialno_str[16]; + char serialno_str[17]; /* retrieve the device */ ret = uclass_get_device_by_driver(UCLASS_MISC, |