Code changes are necessary because `-Wformat` warns about empty format strings by default. Change-Id: Ic8021b70f4cd4875b06f196f88b84940c9a79fe0 Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/75147 Reviewed-by: Jérémy Compostella <jeremy.compostella@intel.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
38 lines
972 B
C
38 lines
972 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#include <stdint.h>
|
|
#include <console/console.h>
|
|
#include <device/device.h>
|
|
#include <device/smbus.h>
|
|
|
|
struct bus *get_pbus_smbus(struct device *dev)
|
|
{
|
|
struct bus *const pbus = i2c_link(dev);
|
|
if (!pbus->dev->ops->ops_smbus_bus)
|
|
die("%s Cannot find SMBus bus operations", dev_path(dev));
|
|
return pbus;
|
|
}
|
|
|
|
#define CHECK_PRESENCE(x) \
|
|
if (!ops_smbus_bus(get_pbus_smbus(dev))->x) { \
|
|
printk(BIOS_ERR, "%s missing " #x "\n", \
|
|
dev_path(dev)); \
|
|
return -1; \
|
|
}
|
|
|
|
int smbus_block_read(struct device *dev, u8 cmd, u8 bytes, u8 *buffer)
|
|
{
|
|
CHECK_PRESENCE(block_read);
|
|
|
|
return ops_smbus_bus(get_pbus_smbus(dev))->block_read(dev, cmd,
|
|
bytes, buffer);
|
|
}
|
|
|
|
int smbus_block_write(struct device *dev, u8 cmd, u8 bytes, const u8 *buffer)
|
|
{
|
|
CHECK_PRESENCE(block_write);
|
|
|
|
return ops_smbus_bus(get_pbus_smbus(dev))->block_write(dev, cmd,
|
|
bytes, buffer);
|
|
}
|