Blame SOURCES/0009-sff-8636-Remove-incorrect-comment.patch

2a1b01
From f1b4bafbb30e77fedb10a23d1b70119b9059f684 Mon Sep 17 00:00:00 2001
2a1b01
From: Ido Schimmel <idosch@nvidia.com>
2a1b01
Date: Fri, 1 Oct 2021 18:06:24 +0300
2a1b01
Subject: [PATCH 09/35] sff-8636: Remove incorrect comment
2a1b01
2a1b01
The comment was copied from SFF-8472 (i.e., sfpdiag.c) where the
2a1b01
diagnostic page is at I2C address 0x51. SFF-8636 only uses I2C address
2a1b01
0x50.
2a1b01
2a1b01
Signed-off-by: Ido Schimmel <idosch@nvidia.com>
2a1b01
---
2a1b01
 qsfp.c | 2 +-
2a1b01
 1 file changed, 1 insertion(+), 1 deletion(-)
2a1b01
2a1b01
diff --git a/qsfp.c b/qsfp.c
2a1b01
index e84226bc1554..263cf188377d 100644
2a1b01
--- a/qsfp.c
2a1b01
+++ b/qsfp.c
2a1b01
@@ -64,7 +64,7 @@
2a1b01
 
2a1b01
 static struct sff8636_aw_flags {
2a1b01
 	const char *str;        /* Human-readable string, null at the end */
2a1b01
-	int offset;             /* A2-relative address offset */
2a1b01
+	int offset;
2a1b01
 	__u8 value;             /* Alarm is on if (offset & value) != 0. */
2a1b01
 } sff8636_aw_flags[] = {
2a1b01
 	{ "Laser bias current high alarm   (Chan 1)",
2a1b01
-- 
2a1b01
2.35.1
2a1b01