Home
last modified time | relevance | path

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

/linux/drivers/media/pci/solo6x10/
H A 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)");
167 if (!full_eeprom && count > 64) { in eeprom_store()
170 } else if (full_eeprom && count > 128) { in eeprom_store()
177 for (i = full_eeprom ? 0 : 32; i < min((int)(full_eeprom ? 64 : 32), in eeprom_store()
192 int count = (full_eeprom ? 128 : 64); in eeprom_show()
195 for (i = (full_eeprom ? 0 : 32); i < (count / 2); i++) in eeprom_show()