summaryrefslogtreecommitdiff
path: root/nuttx/sched/irq_attach.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-09-18 22:56:32 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-09-18 22:56:32 +0000
commitdb4094c6422f2e16606c7939d7048c20ad05867c (patch)
treec1a8399d610dcf09c22d798535299b059ebe9227 /nuttx/sched/irq_attach.c
parent75ac9c0d36ae964520610cf647fff9992f2c96d5 (diff)
downloadpx4-nuttx-db4094c6422f2e16606c7939d7048c20ad05867c.tar.gz
px4-nuttx-db4094c6422f2e16606c7939d7048c20ad05867c.tar.bz2
px4-nuttx-db4094c6422f2e16606c7939d7048c20ad05867c.zip
cosmetic
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@933 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/sched/irq_attach.c')
-rw-r--r--nuttx/sched/irq_attach.c42
1 files changed, 21 insertions, 21 deletions
diff --git a/nuttx/sched/irq_attach.c b/nuttx/sched/irq_attach.c
index 3032bf1b6..cc5ff832e 100644
--- a/nuttx/sched/irq_attach.c
+++ b/nuttx/sched/irq_attach.c
@@ -1,7 +1,7 @@
-/************************************************************
- * irq_attach.c
+/****************************************************************************
+ * sched/irq_attach.c
*
- * Copyright (C) 2007 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -14,7 +14,7 @@
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
- * 3. Neither the name Gregory Nutt nor the names of its contributors may be
+ * 3. Neither the name NuttX nor the names of its contributors may be
* used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -31,48 +31,48 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Included Files
- ************************************************************/
+ ****************************************************************************/
#include <sys/types.h>
#include <nuttx/irq.h>
#include "irq_internal.h"
-/************************************************************
+/****************************************************************************
* Definitions
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Private Type Declarations
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Global Variables
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Private Variables
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Private Functions
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Public Functions
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Name: irq_attach
*
* Description:
* Configure the IRQ subsystem so that IRQ number 'irq'
* is dispatched to 'isr'
*
- ************************************************************/
+ ****************************************************************************/
int irq_attach(int irq, xcpt_t isr)
{