source: rtems/c/src/lib/libbsp/shared/src/irq-default-handler.c @ 8f9d07bb

5
Last change on this file since 8f9d07bb was 8f9d07bb, checked in by Chris Johns <chrisj@…>, on 05/23/16 at 05:27:34

bsp/shared: Fix printk warnings.

  • Property mode set to 100644
File size: 552 bytes
Line 
1/*
2 * Copyright (c) 2008-2012 embedded brains GmbH.  All rights reserved.
3 *
4 *  embedded brains GmbH
5 *  Obere Lagerstr. 30
6 *  82178 Puchheim
7 *  Germany
8 *  <rtems@embedded-brains.de>
9 *
10 * The license and distribution terms for this file may be
11 * found in the file LICENSE in this distribution or at
12 * http://www.rtems.org/license/LICENSE.
13 */
14
15#include <inttypes.h>
16
17#include <rtems/print.h>
18
19#include <bsp/irq-generic.h>
20
21void bsp_interrupt_handler_default(rtems_vector_number vector)
22{
23  printk("spurious interrupt: %" PRIu32 "\n", vector);
24}
Note: See TracBrowser for help on using the repository browser.