Re: [PATCH v3 5/6] can: tcan4x5x: Add support for tcan4552/4553

From: Sean Anderson
Date: Fri Sep 15 2023 - 11:37:44 EST


On 7/21/23 09:50, Markus Schneider-Pargmann wrote:
> +static const struct tcan4x5x_version_info tcan4x5x_versions[] = {
> + [TCAN4552] = {
> + .name = "4552",
> + .id2_register = 0x32353534,
> + },
> + [TCAN4553] = {
> + .name = "4553",
> + .id2_register = 0x32353534,

Should this be 0x33353534?

> + },
> + /* generic version with no id2_register at the end */
> + [TCAN4X5X] = {
> + .name = "generic",
> + .has_wake_pin = true,
> + .has_state_pin = true,
> + },
> +};

--Sean