Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 05899446 authored by Jarkko Nikula's avatar Jarkko Nikula Committed by Mark Brown
Browse files

ASoC: Fix I2C component device id number creation



Use bitwise AND instead of logical AND when masking.

Signed-off-by: default avatarJarkko Nikula <jhnikula@gmail.com>
Acked-by: default avatarLiam Girdwood <lrg@slimlogic.co.uk>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent e86e1244
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);