]> git.karo-electronics.de Git - linux-beck.git/commitdiff
[media] em28xx: fix eeprom data endianess
authorFrank Schaefer <fschaefer.oss@googlemail.com>
Sun, 3 Mar 2013 18:37:38 +0000 (15:37 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Mon, 4 Mar 2013 18:53:54 +0000 (15:53 -0300)
The data is stored as little endian in the eeprom.
Hence the correct data types should be used and the data should be converted
to the machine endianess before using it.
The eeprom id (key) also isn't a 32 bit value but 4 separate bytes instead.

[mchehab@redhat.com: Fix CodingStyle]
Signed-off-by: Frank Schäfer <fschaefer.oss@googlemail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/usb/em28xx/em28xx-i2c.c
drivers/media/usb/em28xx/em28xx.h

index b8a9bee836fafbfc1c8255c104ca4d82ea291271..1b90e7536aa57c2f886b1f001d02d2e29b7ad49a 100644 (file)
@@ -434,19 +434,21 @@ static int em28xx_i2c_eeprom(struct em28xx *dev, unsigned char *eedata, int len)
                        printk("\n");
        }
 
-       if (em_eeprom->id != 0x9567eb1a) {
+       if (em_eeprom->id[0] != 0x1a || em_eeprom->id[1] != 0xeb ||
+           em_eeprom->id[2] != 0x67 || em_eeprom->id[3] != 0x95) {
                em28xx_errdev("Unknown eeprom type or eeprom corrupted !");
                return -ENODEV;
        }
 
        dev->hash = em28xx_hash_mem(eedata, len, 32);
 
-       em28xx_info("EEPROM ID = 0x%08x, EEPROM hash = 0x%08lx\n",
-                   em_eeprom->id, dev->hash);
+       em28xx_info("EEPROM ID = %02x %02x %02x %02x, EEPROM hash = 0x%08lx\n",
+                   em_eeprom->id[0], em_eeprom->id[1],
+                   em_eeprom->id[2], em_eeprom->id[3], dev->hash);
 
        em28xx_info("EEPROM info:\n");
 
-       switch (em_eeprom->chip_conf >> 4 & 0x3) {
+       switch (le16_to_cpu(em_eeprom->chip_conf) >> 4 & 0x3) {
        case 0:
                em28xx_info("\tNo audio on board.\n");
                break;
@@ -461,13 +463,13 @@ static int em28xx_i2c_eeprom(struct em28xx *dev, unsigned char *eedata, int len)
                break;
        }
 
-       if (em_eeprom->chip_conf & 1 << 3)
+       if (le16_to_cpu(em_eeprom->chip_conf) & 1 << 3)
                em28xx_info("\tUSB Remote wakeup capable\n");
 
-       if (em_eeprom->chip_conf & 1 << 2)
+       if (le16_to_cpu(em_eeprom->chip_conf) & 1 << 2)
                em28xx_info("\tUSB Self power capable\n");
 
-       switch (em_eeprom->chip_conf & 0x3) {
+       switch (le16_to_cpu(em_eeprom->chip_conf) & 0x3) {
        case 0:
                em28xx_info("\t500mA max power\n");
                break;
@@ -483,9 +485,9 @@ static int em28xx_i2c_eeprom(struct em28xx *dev, unsigned char *eedata, int len)
        }
        em28xx_info("\tTable at offset 0x%02x, strings=0x%04x, 0x%04x, 0x%04x\n",
                    em_eeprom->string_idx_table,
-                   em_eeprom->string1,
-                   em_eeprom->string2,
-                   em_eeprom->string3);
+                   le16_to_cpu(em_eeprom->string1),
+                   le16_to_cpu(em_eeprom->string2),
+                   le16_to_cpu(em_eeprom->string3));
 
        return 0;
 }
index 4160a2ae1d84f78551c0cd6cfe30f58d7593f83c..90266a1e795765ccfdd7b4c55c8e223f2a106c64 100644 (file)
@@ -405,15 +405,15 @@ struct em28xx_board {
 };
 
 struct em28xx_eeprom {
-       u32 id;                 /* 0x9567eb1a */
-       u16 vendor_ID;
-       u16 product_ID;
+       u8 id[4];                       /* 1a eb 67 95 */
+       __le16 vendor_ID;
+       __le16 product_ID;
 
-       u16 chip_conf;
+       __le16 chip_conf;
 
-       u16 board_conf;
+       __le16 board_conf;
 
-       u16 string1, string2, string3;
+       __le16 string1, string2, string3;
 
        u8 string_idx_table;
 };