This is an automated email from Gerrit. "Jack Doan <g...@jackdoan.com>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/7581
-- gerrit commit 92a6bcf9ff4d62e16d7221c53649455d58701d77 Author: Jack Doan <g...@jackdoan.com> Date: Tue Apr 4 13:37:32 2023 -0500 flash/nor/at91samd: add PIC32CM support fix whitespace Signed-off-by: Jack Doan <g...@jackdoan.com> Change-Id: Ibb3ba91f5cb401020907c40dfa746d348eff83f1 diff --git a/src/flash/nor/at91samd.c b/src/flash/nor/at91samd.c index af70df5e15..97fef5293b 100644 --- a/src/flash/nor/at91samd.c +++ b/src/flash/nor/at91samd.c @@ -303,10 +303,10 @@ static const struct samd_part samc21_parts[] = { /* Known PIC32CM parts. */ static const struct samd_part pic32cm_parts[] = { - { 0x00, "PIC32CM1216MC00032", 128, 16 }, - { 0x01, "PIC32CM6408MC00032", 64, 8 }, - { 0x06, "PIC32CM1216MC00048", 128, 16 }, - { 0x07, "PIC32CM6408MC00048", 64, 8 }, + { 0x00, "PIC32CM1216MC00032", 128, 16 }, + { 0x01, "PIC32CM6408MC00032", 64, 8 }, + { 0x06, "PIC32CM1216MC00048", 128, 16 }, + { 0x07, "PIC32CM6408MC00048", 64, 8 }, }; /* Each family of parts contains a parts table in the DEVSEL field of DID. The @@ -350,9 +350,9 @@ static const struct samd_family samd_families[] = { { SAMD_PROCESSOR_M0, SAMD_FAMILY_C, SAMD_SERIES_21, samc21_parts, ARRAY_SIZE(samc21_parts), (uint64_t)0xFFFF03FFFC01FF77 }, - { SAMD_PROCESSOR_M0, SAMD_FAMILY_C, SAME_SERIES_PIC32CM, - pic32cm_parts, ARRAY_SIZE(pic32cm_parts), - (uint64_t)0xFFFF03FFFC01FF77 }, + { SAMD_PROCESSOR_M0, SAMD_FAMILY_C, SAME_SERIES_PIC32CM, + pic32cm_parts, ARRAY_SIZE(pic32cm_parts), + (uint64_t)0xFFFF03FFFC01FF77 }, }; struct samd_info { --