diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2019-08-16 19:35:46 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2019-08-16 19:35:46 +0200 |
commit | bc8c31dbd506731813a62b220ae544f2eb239c5f (patch) | |
tree | d2fb656f307961fb0747fb3872aa46b588b1f884 /sys/src/9/bcm | |
parent | 031f5756aba3d07939a7eee6b2adf02f0a2d1d8d (diff) |
bcm: fix typo in gpio.c on unused AFedge0 constant
Diffstat (limited to 'sys/src/9/bcm')
-rw-r--r-- | sys/src/9/bcm/gpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/bcm/gpio.c b/sys/src/9/bcm/gpio.c index fbb66343b..0e4ddcb0c 100644 --- a/sys/src/9/bcm/gpio.c +++ b/sys/src/9/bcm/gpio.c @@ -25,7 +25,7 @@ enum { Hpin0 = 0x64>>2, Lpin0 = 0x70>>2, ARedge0 = 0x7C>>2, - AFedge0 = 0x88>2, + AFedge0 = 0x88>>2, PUD = 0x94>>2, Off = 0x0, Pulldown= 0x1, |