diff options
author | Nico Huber <nico.huber@secunet.com> | 2017-06-30 16:59:42 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2017-08-15 13:20:59 +0000 |
commit | 506bc8e2ff34565e5c50940d0ef3addb93b07faa (patch) | |
tree | b8e84e960cb3274ae2a592e59691c4675885aaf0 /src/include/device | |
parent | 6bfcf666b08fcfd3f163674fcc37f4bbd9b62a30 (diff) |
device/smbus: Drop some never used boilerplate
It was added with the words "Update the device header files" and we
maintained it for nearly 13 years :)
These functions are part of the SMBus spec but they are rarely used
and keeping them just in case increases the maintenance burden.
Change-Id: I69a1ea155a21463fc09b7b2c5b7302515a0030b2
Signed-off-by: Nico Huber <nico.huber@secunet.com>
Reviewed-on: https://review.coreboot.org/20439
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/include/device')
-rw-r--r-- | src/include/device/smbus.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/include/device/smbus.h b/src/include/device/smbus.h index 820dac377b..80eafdb969 100644 --- a/src/include/device/smbus.h +++ b/src/include/device/smbus.h @@ -8,15 +8,10 @@ /* Common SMBus bus operations */ struct smbus_bus_operations { - int (*quick_read)(device_t dev); - int (*quick_write)(device_t dev); int (*recv_byte)(device_t dev); int (*send_byte)(device_t dev, u8 value); int (*read_byte)(device_t dev, u8 addr); int (*write_byte)(device_t dev, u8 addr, u8 value); - int (*read_word)(device_t dev, u8 addr); - int (*write_word)(device_t dev, u8 addr, u16 value); - int (*process_call)(device_t dev, u8 cmd, u16 data); int (*block_read)(device_t dev, u8 cmd, u8 bytes, u8 *buffer); int (*block_write)(device_t dev, u8 cmd, u8 bytes, const u8 *buffer); }; @@ -35,15 +30,10 @@ static inline const struct smbus_bus_operations *ops_smbus_bus(struct bus *bus) struct bus *get_pbus_smbus(device_t dev); int smbus_set_link(device_t dev); -int smbus_quick_read(device_t dev); -int smbus_quick_write(device_t dev); int smbus_recv_byte(device_t dev); int smbus_send_byte(device_t dev, u8 byte); int smbus_read_byte(device_t dev, u8 addr); int smbus_write_byte(device_t dev, u8 addr, u8 val); -int smbus_read_word(device_t dev, u8 addr); -int smbus_write_word(device_t dev, u8 addr, u16 val); -int smbus_process_call(device_t dev, u8 cmd, u16 data); int smbus_block_read(device_t dev, u8 cmd, u8 bytes, u8 *buffer); int smbus_block_write(device_t dev, u8 cmd, u8 bytes, const u8 *buffer); |