summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2018-10-02 12:47:00 -0700
committerKeith Packard <keithp@keithp.com>2018-10-13 08:22:50 -0700
commitf037d0091a4b31c631d64e71441953eb9b3b21ce (patch)
tree4e552fe07211bf3a315f6f6c3c700baac183e0db /src
parentb8e607960f2f399fd6ba92a8c97ab72e19812d3f (diff)
altos: Remove 8051-ism from ao_usb.h
__at doesn't exist for non-8051 Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src')
-rw-r--r--src/kernel/ao_usb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/ao_usb.h b/src/kernel/ao_usb.h
index 7992c806..6c74a042 100644
--- a/src/kernel/ao_usb.h
+++ b/src/kernel/ao_usb.h
@@ -69,7 +69,7 @@ ao_usb_disable(void);
void
ao_usb_init(void);
-extern const __at (0x00aa) uint8_t ao_usb_descriptors [];
+extern const uint8_t ao_usb_descriptors [];
#define AO_USB_SETUP_DIR_MASK (0x01 << 7)
#define AO_USB_SETUP_TYPE_MASK (0x03 << 5)