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

Commit 782035ea authored by Dan Carpenter's avatar Dan Carpenter Committed by Mark Brown
Browse files

regmap: missing case statement



This new code is unreachable.  Presumably there was supposed to be a
case statement there similar to the earlier code.

Fixes: afcc00b9 ('regmap: add 64-bit mode support')
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 01c377bf
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -844,6 +844,7 @@ struct regmap *__regmap_init(struct device *dev,
		}
		break;
#ifdef CONFIG_64BIT
	case 64:
		switch (val_endian) {
		case REGMAP_ENDIAN_BIG:
			map->format.format_val = regmap_format_64_be;