Re: [PATCH net] ptp: ptp_clockmatrix: use i2c_master_send for i2c write

From: David Miller
Date: Mon Aug 17 2020 - 17:58:48 EST


From: <min.li.xe@xxxxxxxxxxx>
Date: Mon, 17 Aug 2020 11:37:35 -0400

> @@ -53,7 +53,9 @@
>
> #define OUTPUT_MODULE_FROM_INDEX(index) (OUTPUT_0 + (index) * 0x10)
>
> -#define PEROUT_ENABLE_OUTPUT_MASK (0xdeadbeef)
> +#define PEROUT_ENABLE_OUTPUT_MASK (0xdeadbeef)
> +
> +#define IDTCM_MAX_WRITE_COUNT (512)

Why adjust the indentation of the value of PEROUT_ENABLE_OUTPUT_MASK? It is meant
to line up with OUTPUT_MODULE_FROM_INDEX.

Please do not make unrelated changes like this and follow existing style and
indentation.

Thank you.