diff options
| author | Maxime Ripard <[email protected]> | 2018-09-18 10:35:27 +0300 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2018-09-28 20:22:35 -0400 |
| commit | c924ee25aa0e837bf4ae207e9959babe23a372d6 (patch) | |
| tree | 96f4a40580f9118f6e25a962c2c44c11251128bb /include/dm | |
| parent | e1721ba0e68ebe8ef88e375301b53077d66c0448 (diff) | |
W1-EEPROM: Add an W1-EEPROM uclass for 1 wire EEPROMs
We might want to access data stored onto one wire EEPROMs.
Create a framework to provide a consistent API.
Signed-off-by: Maxime Ripard <[email protected]>
[[email protected]: reworked patch]
Signed-off-by: Eugen Hristev <[email protected]>
Diffstat (limited to 'include/dm')
| -rw-r--r-- | include/dm/uclass-id.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/dm/uclass-id.h b/include/dm/uclass-id.h index fcfc1203517..e6fc3ab92b3 100644 --- a/include/dm/uclass-id.h +++ b/include/dm/uclass-id.h @@ -94,6 +94,7 @@ enum uclass_id { UCLASS_VIDEO_BRIDGE, /* Video bridge, e.g. DisplayPort to LVDS */ UCLASS_VIDEO_CONSOLE, /* Text console driver for video device */ UCLASS_W1, /* Dallas 1-Wire bus */ + UCLASS_W1_EEPROM, /* one-wire EEPROMs */ UCLASS_WDT, /* Watchdot Timer driver */ UCLASS_COUNT, |
