From: Keith Packard Date: Tue, 2 Oct 2018 19:47:00 +0000 (-0700) Subject: altos: Remove 8051-ism from ao_usb.h X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=b3bbd0d8e11c00e2fad606439b2f16a2d6777c80 altos: Remove 8051-ism from ao_usb.h __at doesn't exist for non-8051 Signed-off-by: Keith Packard --- 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)