ASoC: Fix I2C component device id number creation
authorJarkko Nikula <[email protected]>
Tue, 19 Oct 2010 08:10:45 +0000 (11:10 +0300)
committerMark Brown <[email protected]>
Tue, 19 Oct 2010 10:07:09 +0000 (03:07 -0700)
Use bitwise AND instead of logical AND when masking.

Signed-off-by: Jarkko Nikula <[email protected]>
Acked-by: Liam Girdwood <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
sound/soc/soc-core.c

index 63c80e634a37cd858966ae85d27308813fb3f9af..862b1af5fbdf8dde9f70510265872a4298b96eca 100644 (file)
@@ -2929,7 +2929,7 @@ static inline char *fmt_single_name(struct device *dev, int *id)
                        char tmp[NAME_SIZE];
 
                        /* create unique ID number from I2C addr and bus */
-                       *id = ((id1 && 0xffff) << 16) + id2;
+                       *id = ((id1 & 0xffff) << 16) + id2;
 
                        /* sanitize component name for DAI link creation */
                        snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name, name);