diff options
author | Joe Hershberger <joe.hershberger@ni.com> | 2012-05-23 07:58:11 +0000 |
---|---|---|
committer | Joe Hershberger <joe.hershberger@ni.com> | 2012-05-23 17:46:16 -0500 |
commit | da5ebe2c9ad65a1534e61459d4ec0d80c41ddb0e (patch) | |
tree | e8e0dcaec930815da4053d048f959bd657620311 /net | |
parent | 206d07fd7cbe69c8086a9b68f28b36e7b5ab9f08 (diff) | |
download | u-boot-imx-da5ebe2c9ad65a1534e61459d4ec0d80c41ddb0e.zip u-boot-imx-da5ebe2c9ad65a1534e61459d4ec0d80c41ddb0e.tar.gz u-boot-imx-da5ebe2c9ad65a1534e61459d4ec0d80c41ddb0e.tar.bz2 |
net: cosmetic: Add a more explicit comment about 802.2
Make the comment more accurate about the header including SNAP
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'net')
-rw-r--r-- | net/net.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -898,7 +898,8 @@ NetReceive(uchar *inpkt, int len) if (x < 1514) { struct e802_hdr *et802 = (struct e802_hdr *)et; /* - * Got a 802 packet. Check the other protocol field. + * Got a 802.2 packet. Check the other protocol field. + * XXX VLAN over 802.2+SNAP not implemented! */ x = ntohs(et802->et_prot); |