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

Commit b094107e authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "ANDROID: usb: f_accessory: Avoid bitfields for shared variables"

parents dbfffa02 01d8ee5d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -80,13 +80,13 @@ struct acc_dev {
	/* online indicates state of function_set_alt & function_unbind
	 * set to 1 when we connect
	 */
	int online:1;
	int online;

	/* disconnected indicates state of open & release
	 * Set to 1 when we disconnect.
	 * Not cleared until our file is closed.
	 */
	int disconnected:1;
	int disconnected;

	/* strings sent by the host */
	char manufacturer[ACC_STRING_SIZE];