Hi

I have the attached trivial patch. It fixes a missing brace in a tcl script.


(I've had no success with the instructions in HACKING. I get the following error for the push. Its not clear to me if I need some further authorization. I've also tried different username settings.)

! [remote rejected] HEAD -> refs/for/master (not Signed-off-by author/committer/uploader) error: failed to push some refs to 'ssh://mi...@openocd.zylin.com:29418/openocd.git'

--

Mick Davis
Goanna Technologies Pty Ltd
+61 8 9444 2634
diff --git a/tcl/chip/atmel/at91/at91sam9263_matrix.cfg b/tcl/chip/atmel/at91/at91sam9263_matrix.cfg
index 8a74bcd..ad3d9a2 100644
--- a/tcl/chip/atmel/at91/at91sam9263_matrix.cfg
+++ b/tcl/chip/atmel/at91/at91sam9263_matrix.cfg
@@ -7,7 +7,7 @@ set AT91_MATRIX_MCFG5	[expr ($AT91_MATRIX + 0x14)]	;# Master Configuration Regis
 set AT91_MATRIX_MCFG6	[expr ($AT91_MATRIX + 0x18)]	;# Master Configuration Register 6
 set AT91_MATRIX_MCFG7	[expr ($AT91_MATRIX + 0x1C)]	;# Master Configuration Register 7
 set AT91_MATRIX_MCFG8	[expr ($AT91_MATRIX + 0x20)]	;# Master Configuration Register 8
-set		AT91_MATRIX_ULBT	[expr (7 << 0)	;# Undefined Length Burst Type
+set		AT91_MATRIX_ULBT	[expr (7 << 0)]	;# Undefined Length Burst Type
 set			AT91_MATRIX_ULBT_INFINITE	[expr (0 << 0)]
 set			AT91_MATRIX_ULBT_SINGLE		[expr (1 << 0)]
 set			AT91_MATRIX_ULBT_FOUR		[expr (2 << 0)]
_______________________________________________
Openocd-development mailing list
Openocd-development@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/openocd-development

Reply via email to