]> git.sur5r.net Git - u-boot/blobdiff - drivers/misc/i2c_eeprom.c
spi: omap3: fix claim/release bus within DM
[u-boot] / drivers / misc / i2c_eeprom.c
index a14e83225bcc01c76b429b611c32b46f6d2d517f..243e7ae5abfbb5c7989f0c2f22da7b47a4fd9fee 100644 (file)
@@ -1,7 +1,6 @@
+// SPDX-License-Identifier: GPL-2.0+
 /*
  * Copyright (c) 2014 Google, Inc
- *
- * SPDX-License-Identifier:    GPL-2.0+
  */
 
 #include <common.h>
@@ -66,11 +65,13 @@ static int i2c_eeprom_std_probe(struct udevice *dev)
 
 static const struct udevice_id i2c_eeprom_std_ids[] = {
        { .compatible = "i2c-eeprom", .data = 0 },
+       { .compatible = "microchip,24aa02e48", .data = 3 },
        { .compatible = "atmel,24c01a", .data = 3 },
        { .compatible = "atmel,24c02", .data = 3 },
        { .compatible = "atmel,24c04", .data = 4 },
        { .compatible = "atmel,24c08a", .data = 4 },
        { .compatible = "atmel,24c16a", .data = 4 },
+       { .compatible = "atmel,24mac402", .data = 4 },
        { .compatible = "atmel,24c32", .data = 5 },
        { .compatible = "atmel,24c64", .data = 5 },
        { .compatible = "atmel,24c128", .data = 6 },