summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2020-07-09 01:21:03 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2020-07-09 01:22:46 +0200
commit4b1bb4b36aafc6391981d88ddcf26eb93b309c59 (patch)
treed9f8e25556b5282be16226b9e67322c829c02e07
parentb71710cd519c7f9010b770af8bb3943010476476 (diff)
Add missing license statements
-rw-r--r--device/intr.c14
-rw-r--r--device/intr.h15
2 files changed, 28 insertions, 1 deletions
diff --git a/device/intr.c b/device/intr.c
index 1e9ab898..bbbdc92d 100644
--- a/device/intr.c
+++ b/device/intr.c
@@ -1,3 +1,17 @@
+/*
+ * Copyright (c) 2010, 2011, 2016, 2019 Free Software Foundation, Inc.
+ *
+ * Permission to use, copy, modify and distribute this software and its
+ * documentation is hereby granted, provided that both the copyright
+ * notice and this permission notice appear in all copies of the
+ * software, derivative works or modified versions, and any portions
+ * thereof, and that both notices appear in supporting documentation.
+ *
+ * THE FREE SOFTWARE FOUNDATIONALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
+ * CONDITION. THE FREE SOFTWARE FOUNDATION DISCLAIMS ANY LIABILITY OF ANY KIND
+ * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
+ */
+
#include <device/intr.h>
#include <device/ds_routines.h>
#include <kern/queue.h>
diff --git a/device/intr.h b/device/intr.h
index 48843cf0..df282c05 100644
--- a/device/intr.h
+++ b/device/intr.h
@@ -1,5 +1,18 @@
-#ifndef __INTR_H__
+/*
+ * Copyright (c) 2010, 2011, 2019 Free Software Foundation, Inc.
+ *
+ * Permission to use, copy, modify and distribute this software and its
+ * documentation is hereby granted, provided that both the copyright
+ * notice and this permission notice appear in all copies of the
+ * software, derivative works or modified versions, and any portions
+ * thereof, and that both notices appear in supporting documentation.
+ *
+ * THE FREE SOFTWARE FOUNDATIONALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
+ * CONDITION. THE FREE SOFTWARE FOUNDATION DISCLAIMS ANY LIABILITY OF ANY KIND
+ * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
+ */
+#ifndef __INTR_H__
#define __INTR_H__
#include <device/device_types.h>