Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[platform/cel]: update qsfp dd driver in silverstone #90

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
*/

#ifndef TEST_MODE
#define MOD_VERSION "1.2.0"
#define MOD_VERSION "1.2.1"
#else
#define MOD_VERSION "TEST"
#endif
Expand Down Expand Up @@ -1647,12 +1647,12 @@ static struct platform_device silverstone_dev = {
};

/**
* Board info for QSFP/SFP+ eeprom.
* Board info for QSFPDD/SFP+ eeprom.
* Note: Using OOM optoe as I2C eeprom driver.
* https://www.opencompute.org/wiki/Networking/SpecsAndDesigns#Open_Optical_Monitoring
*/
static struct i2c_board_info sff8436_eeprom_info[] = {
{ I2C_BOARD_INFO("optoe1", 0x50) }, //For QSFP w/ sff8436
zhenggen-xu marked this conversation as resolved.
Show resolved Hide resolved
{ I2C_BOARD_INFO("optoe3", 0x50) }, //For QSFPDD w/ cmis
{ I2C_BOARD_INFO("optoe2", 0x50) }, //For SFP+ w/ sff8472
};

Expand Down