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

Commit 1aafee26 authored by Divy Le Ray's avatar Divy Le Ray Committed by David S. Miller
Browse files

cxgb3 - Add T3C rev



add driver recognition for T3C rev board.

Signed-off-by: default avatarDivy Le Ray <divy@chelsio.com>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent bb9366af
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -438,6 +438,7 @@ enum { /* chip revisions */
	T3_REV_A  = 0,
	T3_REV_A  = 0,
	T3_REV_B  = 2,
	T3_REV_B  = 2,
	T3_REV_B2 = 3,
	T3_REV_B2 = 3,
	T3_REV_C  = 4,
};
};


struct trace_params {
struct trace_params {
+3 −0
Original line number Original line Diff line number Diff line
@@ -733,6 +733,9 @@ static inline char t3rev2char(struct adapter *adapter)
	case T3_REV_B2:
	case T3_REV_B2:
		rev = 'b';
		rev = 'b';
		break;
		break;
	case T3_REV_C:
		rev = 'c';
		break;
	}
	}
	return rev;
	return rev;
}
}