mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-02-17 12:30:29 -05:00
adds support for STMicroelectronics M24LRxx devices, which expose two separate I2C addresses: one for system control and one for EEPROM access. The driver implements both a sysfs-based interface for control registers (e.g. UID, password authentication) and an nvmem provider for EEPROM access. Signed-off-by: Abd-Alrhman Masalkhi <abd.masalkhi@gmail.com> Link: https://lore.kernel.org/r/20250717063934.5083-3-abd.masalkhi@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11 lines
426 B
Makefile
11 lines
426 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-$(CONFIG_EEPROM_AT24) += at24.o
|
|
obj-$(CONFIG_EEPROM_AT25) += at25.o
|
|
obj-$(CONFIG_EEPROM_MAX6875) += max6875.o
|
|
obj-$(CONFIG_EEPROM_93CX6) += eeprom_93cx6.o
|
|
obj-$(CONFIG_EEPROM_93XX46) += eeprom_93xx46.o
|
|
obj-$(CONFIG_EEPROM_DIGSY_MTC_CFG) += digsy_mtc_eeprom.o
|
|
obj-$(CONFIG_EEPROM_IDT_89HPESX) += idt_89hpesx.o
|
|
obj-$(CONFIG_EEPROM_EE1004) += ee1004.o
|
|
obj-$(CONFIG_EEPROM_M24LR) += m24lr.o
|