Rename x86 QEMU version of CONFIG_GPIO_IRQ to CONFIG_QEMU_GPIOIRQ

This commit is contained in:
Gregory Nutt 2016-07-22 14:54:00 -06:00
parent 5a9519d636
commit e897ccb940
2 changed files with 10 additions and 3 deletions

View File

@ -25,4 +25,11 @@ config QEMU_VGA
graphics subsystem. Such a conversion to the standard NuttX
framebuffer interface would, however, not be a big job.
config QEMU_GPIOIRQ
bool "GPIO interrupt support"
default n
depends on EXPERIMENTAL
---help---
Enable support for GPIO interrupts (not implemented)
endif

View File

@ -115,7 +115,7 @@ void i486_lowsetup(void);
*
************************************************************************************/
#ifdef CONFIG_GPIO_IRQ
#ifdef CONFIG_QEMU_GPIOIRQ
void i486_gpioirqinitialize(void);
#else
# define i486_gpioirqinitialize()
@ -159,7 +159,7 @@ bool i486_gpioread(uint16_t pinset);
*
************************************************************************************/
#ifdef CONFIG_GPIO_IRQ
#ifdef CONFIG_QEMU_GPIOIRQ
void i486_gpioirqenable(int irq);
#else
# define i486_gpioirqenable(irq)
@ -173,7 +173,7 @@ void i486_gpioirqenable(int irq);
*
************************************************************************************/
#ifdef CONFIG_GPIO_IRQ
#ifdef CONFIG_QEMU_GPIOIRQ
void i486_gpioirqdisable(int irq);
#else
# define i486_gpioirqdisable(irq)