mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
misc: atsha204a: Add support for atsha204 chip
atsha204 chip is predecessor of atsha204a chip. Current U-Boot driver atsha204a-i2c.c can use both atsha204 and atsha204a chips because it does not call specific functions to just one of these chips. So just add compatible string for atsha204. Signed-off-by: Pali Rohár <pali@kernel.org> Reviewed-by: Heiko Schocher <hs@denx.de>
This commit is contained in:
parent
25965e8613
commit
89eabd2f35
1 changed files with 1 additions and 0 deletions
|
@ -283,6 +283,7 @@ static int atsha204a_of_to_plat(struct udevice *dev)
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct udevice_id atsha204a_ids[] = {
|
static const struct udevice_id atsha204a_ids[] = {
|
||||||
|
{ .compatible = "atmel,atsha204" },
|
||||||
{ .compatible = "atmel,atsha204a" },
|
{ .compatible = "atmel,atsha204a" },
|
||||||
{ }
|
{ }
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue