Home
last modified time | relevance | path

Searched refs:full_eeprom (Results 1 – 1 of 1) sorted by relevance

/Linux-v5.4/drivers/media/pci/solo6x10/
Dsolo6x10-core.c34 static int full_eeprom; /* default is only top 64B */ variable
35 module_param(full_eeprom, uint, 0644);
36 MODULE_PARM_DESC(full_eeprom, "Allow access to full 128B EEPROM (dangerous)");
170 if (!full_eeprom && count > 64) { in eeprom_store()
173 } else if (full_eeprom && count > 128) { in eeprom_store()
180 for (i = full_eeprom ? 0 : 32; i < min((int)(full_eeprom ? 64 : 32), in eeprom_store()
195 int count = (full_eeprom ? 128 : 64); in eeprom_show()
198 for (i = (full_eeprom ? 0 : 32); i < (count / 2); i++) in eeprom_show()