Rename x86 QEMU version of CONFIG_GPIO_IRQ to CONFIG_QEMU_GPIOIRQ
This commit is contained in:
parent
5a9519d636
commit
e897ccb940
|
@ -25,4 +25,11 @@ config QEMU_VGA
|
||||||
graphics subsystem. Such a conversion to the standard NuttX
|
graphics subsystem. Such a conversion to the standard NuttX
|
||||||
framebuffer interface would, however, not be a big job.
|
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
|
endif
|
||||||
|
|
|
@ -115,7 +115,7 @@ void i486_lowsetup(void);
|
||||||
*
|
*
|
||||||
************************************************************************************/
|
************************************************************************************/
|
||||||
|
|
||||||
#ifdef CONFIG_GPIO_IRQ
|
#ifdef CONFIG_QEMU_GPIOIRQ
|
||||||
void i486_gpioirqinitialize(void);
|
void i486_gpioirqinitialize(void);
|
||||||
#else
|
#else
|
||||||
# define i486_gpioirqinitialize()
|
# 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);
|
void i486_gpioirqenable(int irq);
|
||||||
#else
|
#else
|
||||||
# define i486_gpioirqenable(irq)
|
# 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);
|
void i486_gpioirqdisable(int irq);
|
||||||
#else
|
#else
|
||||||
# define i486_gpioirqdisable(irq)
|
# define i486_gpioirqdisable(irq)
|
||||||
|
|
Loading…
Reference in New Issue