summaryrefslogtreecommitdiffstats
path: root/src/fan
diff options
context:
space:
mode:
authorRadek Novacek <rnovacek@redhat.com>2012-08-02 09:19:00 +0200
committerRadek Novacek <rnovacek@redhat.com>2012-08-02 10:30:49 +0200
commitd47169b3175a564a22de716510ed5e2bf30b6815 (patch)
tree5fc97325d70f27bc2fe79bb391f2e38c4e05c8d9 /src/fan
parentbd599b541f51aca1195032537f54d01c6e0387bb (diff)
downloadopenlmi-providers-d47169b3175a564a22de716510ed5e2bf30b6815.tar.gz
openlmi-providers-d47169b3175a564a22de716510ed5e2bf30b6815.tar.xz
openlmi-providers-d47169b3175a564a22de716510ed5e2bf30b6815.zip
Add GPLv2 license file and GPLv2+ headers to all files
Diffstat (limited to 'src/fan')
-rw-r--r--src/fan/Cura_FanAssociatedSensorProvider.c18
-rw-r--r--src/fan/Cura_FanProvider.c18
-rw-r--r--src/fan/Cura_FanSensorProvider.c18
-rw-r--r--src/fan/fan.c19
-rw-r--r--src/fan/fan.h19
5 files changed, 74 insertions, 18 deletions
diff --git a/src/fan/Cura_FanAssociatedSensorProvider.c b/src/fan/Cura_FanAssociatedSensorProvider.c
index 185518a..4674171 100644
--- a/src/fan/Cura_FanAssociatedSensorProvider.c
+++ b/src/fan/Cura_FanAssociatedSensorProvider.c
@@ -1,3 +1,21 @@
+/*
+ * Copyright (C) 2012 Michal Minar <miminar@redhat.com>
+ * Copyright (C) 2012 Radek Novacek <rnovacek@redhat.com>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
+
#include <konkret/konkret.h>
#include "Cura_FanAssociatedSensor.h"
#include "fan.h"
diff --git a/src/fan/Cura_FanProvider.c b/src/fan/Cura_FanProvider.c
index 4538b98..cc9e13c 100644
--- a/src/fan/Cura_FanProvider.c
+++ b/src/fan/Cura_FanProvider.c
@@ -1,3 +1,21 @@
+/*
+ * Copyright (C) 2012 Michal Minar <miminar@redhat.com>
+ * Copyright (C) 2012 Radek Novacek <rnovacek@redhat.com>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
+
#include <konkret/konkret.h>
#include <stdint.h>
#include "Cura_Fan.h"
diff --git a/src/fan/Cura_FanSensorProvider.c b/src/fan/Cura_FanSensorProvider.c
index efbc1a5..2965bf5 100644
--- a/src/fan/Cura_FanSensorProvider.c
+++ b/src/fan/Cura_FanSensorProvider.c
@@ -1,3 +1,21 @@
+/*
+ * Copyright (C) 2012 Michal Minar <miminar@redhat.com>
+ * Copyright (C) 2012 Radek Novacek <rnovacek@redhat.com>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
+
#include <konkret/konkret.h>
#include "Cura_FanSensor.h"
#include "fan.h"
diff --git a/src/fan/fan.c b/src/fan/fan.c
index 4ce9495..04a74a0 100644
--- a/src/fan/fan.c
+++ b/src/fan/fan.c
@@ -1,19 +1,20 @@
-/* This file is part of cmpiCura_FanProvider.
+/*
+ * Copyright (C) 2012 Michal Minar <miminar@redhat.com>
*
- * cmpiCura_FanProvider is free software: you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
*
- * cmpiCura_FanProvider is distributed in the hope that it will be useful,
+ * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with cmpiCura_FanProvider. If not, see
- * <http://www.gnu.org/licenses/>.
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
+
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
diff --git a/src/fan/fan.h b/src/fan/fan.h
index a2da25c..316f65c 100644
--- a/src/fan/fan.h
+++ b/src/fan/fan.h
@@ -1,19 +1,20 @@
-/* This file is part of cmpiCura_FanProvider.
+/*
+ * Copyright (C) 2012 Michal Minar <miminar@redhat.com>
*
- * cmpiCura_FanProvider is free software: you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
*
- * cmpiCura_FanProvider is distributed in the hope that it will be useful,
+ * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with cmpiCura_FanProvider. If not, see
- * <http://www.gnu.org/licenses/>.
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
+
#ifndef LINUX_FAN_H_
#define LINUX_FAN_H_