mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 14:10:43 +00:00
Merge branch 'master' of git://git.denx.de/u-boot-i2c
This commit is contained in:
commit
d117d8f19b
1 changed files with 7 additions and 0 deletions
|
@ -85,6 +85,12 @@ static int tegra186_bpmp_i2c_xfer(struct udevice *dev, struct i2c_msg *msg,
|
|||
return 0;
|
||||
}
|
||||
|
||||
static int tegra186_bpmp_probe_chip(struct udevice *bus, uint chip_addr,
|
||||
uint chip_flags)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int tegra186_bpmp_i2c_probe(struct udevice *dev)
|
||||
{
|
||||
struct tegra186_bpmp_i2c *priv = dev_get_priv(dev);
|
||||
|
@ -101,6 +107,7 @@ static int tegra186_bpmp_i2c_probe(struct udevice *dev)
|
|||
|
||||
static const struct dm_i2c_ops tegra186_bpmp_i2c_ops = {
|
||||
.xfer = tegra186_bpmp_i2c_xfer,
|
||||
.probe_chip = tegra186_bpmp_probe_chip,
|
||||
};
|
||||
|
||||
static const struct udevice_id tegra186_bpmp_i2c_ids[] = {
|
||||
|
|
Loading…
Reference in a new issue