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

Commit 0a589f4f authored by Alison Schofield's avatar Alison Schofield Committed by Greg Kroah-Hartman
Browse files

staging: gdmwm: move variables to right side of comparison test



Move variables to right side of comparison test to improve readability.

Signed-off-by: default avatarAlison Schofield <amsfield22@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4188e586
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -581,8 +581,8 @@ static int gdm_wimax_get_prepared_info(struct net_device *dev, char *buf,
		}

		pos += gdm_wimax_hci_get_tlv(&buf[pos], &T, &L, &V);
		if (T == TLV_T(T_MAC_ADDRESS)) {
			if (L != dev->addr_len) {
		if (TLV_T(T_MAC_ADDRESS) == T) {
			if (dev->addr_len != L) {
				netdev_err(dev,
					   "%s Invalid information result T/L [%x/%d]\n",
					   __func__, T, L);