git: 9front

Download patch

ref: 67c16ec8ea3a600305e25c5d52a2d3b88d165ec4
parent: 42438a262b02b651c102b39ce1f4adf8e9253449
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Fri Aug 16 15:35:46 EDT 2019

bcm: fix typo in gpio.c on unused AFedge0 constant

--- a/sys/src/9/bcm/gpio.c
+++ b/sys/src/9/bcm/gpio.c
@@ -25,7 +25,7 @@
 	Hpin0	= 0x64>>2,
 	Lpin0	= 0x70>>2,
 	ARedge0	= 0x7C>>2,
-	AFedge0	= 0x88>2,
+	AFedge0	= 0x88>>2,
 	PUD	= 0x94>>2,
 		Off	= 0x0,
 		Pulldown= 0x1,
--