Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c24c7de5 authored by Jordan Crouse's avatar Jordan Crouse
Browse files

drivers: soc: qti: Fix data type for uapi header



Data type bool isn't valid for uapi headers. Use the correct _Bool
type instead.

Change-Id: Ic0dedbadc3f104cfa81b9e180ba33fe58be113ca
Signed-off-by: default avatarJordan Crouse <jcrouse@codeaurora.org>
parent a3293f68
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -50,7 +50,7 @@ enum qbt_fw_event {
 * @is_wuhb_connected - if non-zero, WUHB INT line is connected
 */
struct qbt_wuhb_connected_status {
	bool is_wuhb_connected;
	_Bool is_wuhb_connected;
};

/*
@@ -72,7 +72,7 @@ struct qbt_key_event {
 * @rad_y: movement radius in y direction
 */
struct qbt_touch_config {
	bool rad_filter_enable;
	_Bool rad_filter_enable;
	int rad_x;
	int rad_y;
};