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

Commit e12811ef authored by Johan Hovold's avatar Johan Hovold Committed by Greg Kroah-Hartman
Browse files

greybus: interface: fix es2 boot-status mask



The ES2 boot status is stored in the least significant byte.

Signed-off-by: default avatarJohan Hovold <johan@hovoldconsulting.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@google.com>
parent c2d80906
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@ static int gb_interface_read_and_clear_boot_status(struct gb_interface *intf)
	 */
	if (intf->ddbl1_manufacturer_id == ES2_DDBL1_MFR_ID &&
			intf->ddbl1_product_id == ES2_DDBL1_PROD_ID)
		init_status = value;
		init_status = value & 0xff;
	else
		init_status = value >> 24;