From 0844ba3c1749b5d8e1a6b28dde0efd44fc90b278 Mon Sep 17 00:00:00 2001 From: liruncong Date: Wed, 5 Dec 2018 20:42:01 +0800 Subject: [PATCH] =?UTF-8?q?[bsp/qemu-vexpress-gemini]rt=5Fhw=5Finterrupt?= =?UTF-8?q?=5Finstall=E5=87=BD=E6=95=B0name=E5=8F=82=E6=95=B0=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0const=E9=99=90=E5=AE=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bsp/qemu-vexpress-gemini/cpu/interrupt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bsp/qemu-vexpress-gemini/cpu/interrupt.c b/bsp/qemu-vexpress-gemini/cpu/interrupt.c index a189566222..889f74b5ca 100644 --- a/bsp/qemu-vexpress-gemini/cpu/interrupt.c +++ b/bsp/qemu-vexpress-gemini/cpu/interrupt.c @@ -108,7 +108,7 @@ void rt_hw_interrupt_umask(int vector) * @param old_handler the old interrupt service routine */ rt_isr_handler_t rt_hw_interrupt_install(int vector, rt_isr_handler_t handler, - void *param, char *name) + void *param, const char *name) { rt_isr_handler_t old_handler = RT_NULL;