From d1343522e509ea78dd53615846bd7b0a0049e97a Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Sat, 24 Feb 2024 23:32:09 +0100 Subject: mmc: Convert hs400_tuning flag from u8 to bool This hs400_tuning is a flag, make it bool. No functional change. This will be useful in the following patch, which adds another more generic flag, where the compiler can better use the space now reserved for the u8 to store more flags in it. Signed-off-by: Marek Vasut Reviewed-by: Jaehoon Chung --- include/mmc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/mmc.h b/include/mmc.h index 8df14130edd..a4584f84729 100644 --- a/include/mmc.h +++ b/include/mmc.h @@ -736,7 +736,7 @@ struct mmc { * accessing the boot partitions */ u32 quirks; - u8 hs400_tuning; + bool hs400_tuning:1; enum bus_mode user_speed_mode; /* input speed mode from user */ }; -- cgit v1.2.3