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

Commit ddbea5cf authored by Alfonso Acosta's avatar Alfonso Acosta Committed by Marcel Holtmann
Browse files

Bluetooth: Remove redundant check on hci_conn's device class



NULL-checking conn->dev_class is pointless since the variable is
defined as an array, i.e. it will always be non-NULL.

Signed-off-by: default avatarAlfonso Acosta <fons@spotify.com>
Signed-off-by: default avatarJohan Hedberg <johan.hedberg@intel.com>
parent fd45ada9
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -6196,8 +6196,7 @@ void mgmt_device_connected(struct hci_dev *hdev, struct hci_conn *conn,
			eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE,
						  name, name_len);

		if (conn->dev_class &&
		    memcmp(conn->dev_class, "\0\0\0", 3) != 0)
		if (memcmp(conn->dev_class, "\0\0\0", 3) != 0)
			eir_len = eir_append_data(ev->eir, eir_len,
						  EIR_CLASS_OF_DEV,
						  conn->dev_class, 3);