Commit daf4218b authored by Jason A. Donenfeld's avatar Jason A. Donenfeld

media: atomisp: make hive_int8 explictly signed

The current definition of hive_int8 is a naked char, without any sign
specifier. This is incorrect on platforms such as arm, where char is
unsigned. Fortunately nothing in the kernel actually uses a hive_int8
type, but in case it gets used later rather than removed, this makes it
explicitly signed.

Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Cc: Sakari Ailus <sakari.ailus@linux.intel.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: default avatarJason A. Donenfeld <Jason@zx2c4.com>
parent 73921344
...@@ -42,7 +42,7 @@ typedef unsigned int hive_bool; ...@@ -42,7 +42,7 @@ typedef unsigned int hive_bool;
#define hive_false 0 #define hive_false 0
#define hive_true 1 #define hive_true 1
typedef char hive_int8; typedef signed char hive_int8;
typedef short hive_int16; typedef short hive_int16;
typedef int hive_int32; typedef int hive_int32;
typedef long long hive_int64; typedef long long hive_int64;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment