Searched refs:at24_io_limit (Results 1 - 2 of 2) sorted by relevance
/kernel/linux/linux-5.10/drivers/misc/eeprom/ |
H A D | at24.c | 111 static unsigned int at24_io_limit = 128; variable 112 module_param_named(io_limit, at24_io_limit, uint, 0); 113 MODULE_PARM_DESC(at24_io_limit, "Maximum bytes per I/O (default 128)"); 317 if (count > at24_io_limit) in at24_adjust_read_count() 318 count = at24_io_limit; in at24_adjust_read_count() 704 page_size, at24_io_limit); in at24_probe() 840 if (!at24_io_limit) { in at24_init() 841 pr_err("at24: at24_io_limit must not be 0!\n"); in at24_init() 845 at24_io_limit = rounddown_pow_of_two(at24_io_limit); in at24_init() [all...] |
/kernel/linux/linux-6.6/drivers/misc/eeprom/ |
H A D | at24.c | 107 static unsigned int at24_io_limit = 128; variable 108 module_param_named(io_limit, at24_io_limit, uint, 0); 109 MODULE_PARM_DESC(at24_io_limit, "Maximum bytes per I/O (default 128)"); 323 if (count > at24_io_limit) in at24_adjust_read_count() 324 count = at24_io_limit; in at24_adjust_read_count() 701 page_size, at24_io_limit); in at24_probe() 844 if (!at24_io_limit) { in at24_init() 845 pr_err("at24: at24_io_limit must not be 0!\n"); in at24_init() 849 at24_io_limit = rounddown_pow_of_two(at24_io_limit); in at24_init() [all...] |
Completed in 3 milliseconds