Commit 0248555c authored by Ron Smith's avatar Ron Smith Committed by Christopher Friedt
Browse files

drivers: serial: uart_sam0: Fix sercom5 pinctrl pad per datasheet



Fix a typo bug where sercom5 pinctrl has pad2 and pad3
has duplicated pads for pb0/pb2 and pb1/pb3.
Per the datasheet, pb2 and pb3 should be pad0 and pad1 respectively.

Signed-off-by: default avatarRon Smith <rockyowl171@gmail.com>
parent 9d7c9ffe
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -70,8 +70,8 @@
			DT_ATMEL_PORT(sercom5, pad1, b, 31, d, pinmux-enable);
			DT_ATMEL_PORT(sercom5, pad2, b,  0, d, pinmux-enable);
			DT_ATMEL_PORT(sercom5, pad3, b,  1, d, pinmux-enable);
			DT_ATMEL_PORT(sercom5, pad2, b,  2, d, pinmux-enable);
			DT_ATMEL_PORT(sercom5, pad3, b,  3, d, pinmux-enable);
			DT_ATMEL_PORT(sercom5, pad0, b,  2, d, pinmux-enable);
			DT_ATMEL_PORT(sercom5, pad1, b,  3, d, pinmux-enable);
		};
	};
};