summaryrefslogtreecommitdiff
path: root/firmware/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers')
-rw-r--r--firmware/drivers/ata.c6
-rw-r--r--firmware/drivers/ata_flash.c6
-rw-r--r--firmware/drivers/ata_mmc.c6
-rw-r--r--firmware/drivers/audio/as3514.c6
-rw-r--r--firmware/drivers/audio/mas35xx.c6
-rw-r--r--firmware/drivers/audio/tlv320.c6
-rw-r--r--firmware/drivers/audio/tsc2100.c6
-rw-r--r--firmware/drivers/audio/uda1380.c6
-rw-r--r--firmware/drivers/audio/wm8721.c6
-rw-r--r--firmware/drivers/audio/wm8731.c6
-rw-r--r--firmware/drivers/audio/wm8751.c6
-rw-r--r--firmware/drivers/audio/wm8758.c6
-rw-r--r--firmware/drivers/audio/wm8975.c6
-rw-r--r--firmware/drivers/audio/wm8978.c6
-rw-r--r--firmware/drivers/audio/wm8985.c6
-rw-r--r--firmware/drivers/button.c6
-rw-r--r--firmware/drivers/dac.c6
-rw-r--r--firmware/drivers/dac.h6
-rw-r--r--firmware/drivers/eeprom_24cxx.c6
-rw-r--r--firmware/drivers/fat.c6
-rw-r--r--firmware/drivers/fmradio.c6
-rw-r--r--firmware/drivers/generic_i2c.c6
-rw-r--r--firmware/drivers/i2c.c6
-rw-r--r--firmware/drivers/isp1362.c6
-rw-r--r--firmware/drivers/isp1583.c6
-rw-r--r--firmware/drivers/lcd-16bit.c6
-rw-r--r--firmware/drivers/lcd-1bit-vert.c6
-rw-r--r--firmware/drivers/lcd-2bit-horz.c6
-rw-r--r--firmware/drivers/lcd-2bit-vert.c6
-rw-r--r--firmware/drivers/lcd-2bit-vi.c6
-rw-r--r--firmware/drivers/lcd-charcell.c6
-rw-r--r--firmware/drivers/lcd-charset-player.c6
-rw-r--r--firmware/drivers/lcd-remote-1bit-v.c6
-rw-r--r--firmware/drivers/lcd-remote-2bit-vi.c6
-rw-r--r--firmware/drivers/led.c6
-rw-r--r--firmware/drivers/m5636.c6
-rw-r--r--firmware/drivers/mas.c6
-rw-r--r--firmware/drivers/pcf50605.c6
-rw-r--r--firmware/drivers/pcf50606.c6
-rw-r--r--firmware/drivers/rtc/rtc_as3514.c6
-rw-r--r--firmware/drivers/rtc/rtc_ds1339_ds3231.c6
-rw-r--r--firmware/drivers/rtc/rtc_e8564.c6
-rw-r--r--firmware/drivers/rtc/rtc_m41st84w.c6
-rw-r--r--firmware/drivers/rtc/rtc_mc13783.c6
-rw-r--r--firmware/drivers/rtc/rtc_mr100.c6
-rw-r--r--firmware/drivers/rtc/rtc_pcf50605.c6
-rw-r--r--firmware/drivers/rtc/rtc_pcf50606.c6
-rw-r--r--firmware/drivers/rtc/rtc_rx5x348ab.c6
-rw-r--r--firmware/drivers/rtc/rtc_s3c2440.c6
-rw-r--r--firmware/drivers/rtc/rtc_tcc77x.c6
-rw-r--r--firmware/drivers/rtc/rtc_zenvisionm.c6
-rw-r--r--firmware/drivers/serial.c6
-rw-r--r--firmware/drivers/sw_i2c.c6
-rw-r--r--firmware/drivers/tsc2100.c6
-rw-r--r--firmware/drivers/tuner/lv24020lp.c6
-rw-r--r--firmware/drivers/tuner/s1a0903x01.c6
-rw-r--r--firmware/drivers/tuner/tea5760uk.c6
-rw-r--r--firmware/drivers/tuner/tea5767.c6
58 files changed, 232 insertions, 116 deletions
diff --git a/firmware/drivers/ata.c b/firmware/drivers/ata.c
index 87dacc3ed0..d208f9dd76 100644
--- a/firmware/drivers/ata.c
+++ b/firmware/drivers/ata.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2002 by Alan Korr 10 * Copyright (C) 2002 by Alan Korr
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/ata_flash.c b/firmware/drivers/ata_flash.c
index 078cc6b494..d77e05647b 100644
--- a/firmware/drivers/ata_flash.c
+++ b/firmware/drivers/ata_flash.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2005 Tomasz Malesinski 10 * Copyright (C) 2005 Tomasz Malesinski
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/ata_mmc.c b/firmware/drivers/ata_mmc.c
index e0a2b17500..e1d42feb44 100644
--- a/firmware/drivers/ata_mmc.c
+++ b/firmware/drivers/ata_mmc.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2004 by Jens Arnold 10 * Copyright (C) 2004 by Jens Arnold
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/audio/as3514.c b/firmware/drivers/audio/as3514.c
index 01dc23b963..97117e48c3 100644
--- a/firmware/drivers/audio/as3514.c
+++ b/firmware/drivers/audio/as3514.c
@@ -12,8 +12,10 @@
12 * Copyright (c) 2007 Daniel Ankers 12 * Copyright (c) 2007 Daniel Ankers
13 * Copyright (c) 2007 Christian Gmeiner 13 * Copyright (c) 2007 Christian Gmeiner
14 * 14 *
15 * All files in this archive are subject to the GNU General Public License. 15 * This program is free software; you can redistribute it and/or
16 * See the file COPYING in the source tree root for full license agreement. 16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version 2
18 * of the License, or (at your option) any later version.
17 * 19 *
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 20 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied. 21 * KIND, either express or implied.
diff --git a/firmware/drivers/audio/mas35xx.c b/firmware/drivers/audio/mas35xx.c
index 9d80ac93d1..d1efe4b2e6 100644
--- a/firmware/drivers/audio/mas35xx.c
+++ b/firmware/drivers/audio/mas35xx.c
@@ -12,8 +12,10 @@
12 * 12 *
13 * Copyright (c) 2007 by Christian Gmeiner 13 * Copyright (c) 2007 by Christian Gmeiner
14 * 14 *
15 * All files in this archive are subject to the GNU General Public License. 15 * This program is free software; you can redistribute it and/or
16 * See the file COPYING in the source tree root for full license agreement. 16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version 2
18 * of the License, or (at your option) any later version.
17 * 19 *
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 20 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied. 21 * KIND, either express or implied.
diff --git a/firmware/drivers/audio/tlv320.c b/firmware/drivers/audio/tlv320.c
index d3669a2cfd..b2c5be8e61 100644
--- a/firmware/drivers/audio/tlv320.c
+++ b/firmware/drivers/audio/tlv320.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2005 by Christian Gmeiner 10 * Copyright (C) 2005 by Christian Gmeiner
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/audio/tsc2100.c b/firmware/drivers/audio/tsc2100.c
index dfa24cf848..038f3ed178 100644
--- a/firmware/drivers/audio/tsc2100.c
+++ b/firmware/drivers/audio/tsc2100.c
@@ -11,8 +11,10 @@
11 * 11 *
12 * Copyright (c) 2008 Jonathan Gordon 12 * Copyright (c) 2008 Jonathan Gordon
13 * 13 *
14 * All files in this archive are subject to the GNU General Public License. 14 * This program is free software; you can redistribute it and/or
15 * See the file COPYING in the source tree root for full license agreement. 15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
16 * 18 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied. 20 * KIND, either express or implied.
diff --git a/firmware/drivers/audio/uda1380.c b/firmware/drivers/audio/uda1380.c
index a344a248b3..e76b08a429 100644
--- a/firmware/drivers/audio/uda1380.c
+++ b/firmware/drivers/audio/uda1380.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2005 by Andy Young 10 * Copyright (C) 2005 by Andy Young
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/audio/wm8721.c b/firmware/drivers/audio/wm8721.c
index 1090b70b07..60c4e66c76 100644
--- a/firmware/drivers/audio/wm8721.c
+++ b/firmware/drivers/audio/wm8721.c
@@ -16,8 +16,10 @@
16 * 16 *
17 * Copyright (c) 2003-2005 Bernard Leach (leachbj@bouncycastle.org) 17 * Copyright (c) 2003-2005 Bernard Leach (leachbj@bouncycastle.org)
18 * 18 *
19 * All files in this archive are subject to the GNU General Public License. 19 * This program is free software; you can redistribute it and/or
20 * See the file COPYING in the source tree root for full license agreement. 20 * modify it under the terms of the GNU General Public License
21 * as published by the Free Software Foundation; either version 2
22 * of the License, or (at your option) any later version.
21 * 23 *
22 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 24 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
23 * KIND, either express or implied. 25 * KIND, either express or implied.
diff --git a/firmware/drivers/audio/wm8731.c b/firmware/drivers/audio/wm8731.c
index a4f35743bd..b9de5d4cf0 100644
--- a/firmware/drivers/audio/wm8731.c
+++ b/firmware/drivers/audio/wm8731.c
@@ -16,8 +16,10 @@
16 * 16 *
17 * Copyright (c) 2003-2005 Bernard Leach (leachbj@bouncycastle.org) 17 * Copyright (c) 2003-2005 Bernard Leach (leachbj@bouncycastle.org)
18 * 18 *
19 * All files in this archive are subject to the GNU General Public License. 19 * This program is free software; you can redistribute it and/or
20 * See the file COPYING in the source tree root for full license agreement. 20 * modify it under the terms of the GNU General Public License
21 * as published by the Free Software Foundation; either version 2
22 * of the License, or (at your option) any later version.
21 * 23 *
22 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 24 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
23 * KIND, either express or implied. 25 * KIND, either express or implied.
diff --git a/firmware/drivers/audio/wm8751.c b/firmware/drivers/audio/wm8751.c
index 831f16ab17..7145fe4ea4 100644
--- a/firmware/drivers/audio/wm8751.c
+++ b/firmware/drivers/audio/wm8751.c
@@ -16,8 +16,10 @@
16 * 16 *
17 * Copyright (c) 2003-2005 Bernard Leach (leachbj@bouncycastle.org) 17 * Copyright (c) 2003-2005 Bernard Leach (leachbj@bouncycastle.org)
18 * 18 *
19 * All files in this archive are subject to the GNU General Public License. 19 * This program is free software; you can redistribute it and/or
20 * See the file COPYING in the source tree root for full license agreement. 20 * modify it under the terms of the GNU General Public License
21 * as published by the Free Software Foundation; either version 2
22 * of the License, or (at your option) any later version.
21 * 23 *
22 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 24 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
23 * KIND, either express or implied. 25 * KIND, either express or implied.
diff --git a/firmware/drivers/audio/wm8758.c b/firmware/drivers/audio/wm8758.c
index b380530e39..7918d03274 100644
--- a/firmware/drivers/audio/wm8758.c
+++ b/firmware/drivers/audio/wm8758.c
@@ -16,8 +16,10 @@
16 * 16 *
17 * Copyright (c) 2003-2005 Bernard Leach (leachbj@bouncycastle.org) 17 * Copyright (c) 2003-2005 Bernard Leach (leachbj@bouncycastle.org)
18 * 18 *
19 * All files in this archive are subject to the GNU General Public License. 19 * This program is free software; you can redistribute it and/or
20 * See the file COPYING in the source tree root for full license agreement. 20 * modify it under the terms of the GNU General Public License
21 * as published by the Free Software Foundation; either version 2
22 * of the License, or (at your option) any later version.
21 * 23 *
22 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 24 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
23 * KIND, either express or implied. 25 * KIND, either express or implied.
diff --git a/firmware/drivers/audio/wm8975.c b/firmware/drivers/audio/wm8975.c
index c207895a97..13cfab75ba 100644
--- a/firmware/drivers/audio/wm8975.c
+++ b/firmware/drivers/audio/wm8975.c
@@ -16,8 +16,10 @@
16 * 16 *
17 * Copyright (c) 2003-2005 Bernard Leach (leachbj@bouncycastle.org) 17 * Copyright (c) 2003-2005 Bernard Leach (leachbj@bouncycastle.org)
18 * 18 *
19 * All files in this archive are subject to the GNU General Public License. 19 * This program is free software; you can redistribute it and/or
20 * See the file COPYING in the source tree root for full license agreement. 20 * modify it under the terms of the GNU General Public License
21 * as published by the Free Software Foundation; either version 2
22 * of the License, or (at your option) any later version.
21 * 23 *
22 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 24 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
23 * KIND, either express or implied. 25 * KIND, either express or implied.
diff --git a/firmware/drivers/audio/wm8978.c b/firmware/drivers/audio/wm8978.c
index f32b9db67f..e24770299b 100644
--- a/firmware/drivers/audio/wm8978.c
+++ b/firmware/drivers/audio/wm8978.c
@@ -11,8 +11,10 @@
11 * 11 *
12 * Driver for WM8978 audio codec 12 * Driver for WM8978 audio codec
13 * 13 *
14 * All files in this archive are subject to the GNU General Public License. 14 * This program is free software; you can redistribute it and/or
15 * See the file COPYING in the source tree root for full license agreement. 15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
16 * 18 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied. 20 * KIND, either express or implied.
diff --git a/firmware/drivers/audio/wm8985.c b/firmware/drivers/audio/wm8985.c
index 411bd97c59..9d80f9e374 100644
--- a/firmware/drivers/audio/wm8985.c
+++ b/firmware/drivers/audio/wm8985.c
@@ -7,8 +7,10 @@
7 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
8 * $Id$ 8 * $Id$
9 * 9 *
10 * All files in this archive are subject to the GNU General Public License. 10 * This program is free software; you can redistribute it and/or
11 * See the file COPYING in the source tree root for full license agreement. 11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version 2
13 * of the License, or (at your option) any later version.
12 * 14 *
13 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
14 * KIND, either express or implied. 16 * KIND, either express or implied.
diff --git a/firmware/drivers/button.c b/firmware/drivers/button.c
index 74c5a97167..7be7fbc1b3 100644
--- a/firmware/drivers/button.c
+++ b/firmware/drivers/button.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2002 by Daniel Stenberg 10 * Copyright (C) 2002 by Daniel Stenberg
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/dac.c b/firmware/drivers/dac.c
index 4212b322f0..f21ef9a802 100644
--- a/firmware/drivers/dac.c
+++ b/firmware/drivers/dac.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2002 by Linus Nielsen Feltzing 10 * Copyright (C) 2002 by Linus Nielsen Feltzing
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/dac.h b/firmware/drivers/dac.h
index dc953c1420..0083fc5fac 100644
--- a/firmware/drivers/dac.h
+++ b/firmware/drivers/dac.h
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2002 by Linus Nielsen Feltzing 10 * Copyright (C) 2002 by Linus Nielsen Feltzing
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/eeprom_24cxx.c b/firmware/drivers/eeprom_24cxx.c
index a0d8f83eb7..4cd50d4e3a 100644
--- a/firmware/drivers/eeprom_24cxx.c
+++ b/firmware/drivers/eeprom_24cxx.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2006 by Miika Pekkarinen 10 * Copyright (C) 2006 by Miika Pekkarinen
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/fat.c b/firmware/drivers/fat.c
index 0ff47a82b5..3130a3e2b4 100644
--- a/firmware/drivers/fat.c
+++ b/firmware/drivers/fat.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2002 by Linus Nielsen Feltzing 10 * Copyright (C) 2002 by Linus Nielsen Feltzing
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/fmradio.c b/firmware/drivers/fmradio.c
index f231d47b89..a6d2e799cb 100644
--- a/firmware/drivers/fmradio.c
+++ b/firmware/drivers/fmradio.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2002 by Linus Nielsen Feltzing 10 * Copyright (C) 2002 by Linus Nielsen Feltzing
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/generic_i2c.c b/firmware/drivers/generic_i2c.c
index 8475f00ee6..2e5f202307 100644
--- a/firmware/drivers/generic_i2c.c
+++ b/firmware/drivers/generic_i2c.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2006 by Linus Nielsen Feltzing 10 * Copyright (C) 2006 by Linus Nielsen Feltzing
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/i2c.c b/firmware/drivers/i2c.c
index 66b6340f2b..f919257c49 100644
--- a/firmware/drivers/i2c.c
+++ b/firmware/drivers/i2c.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2002 by Linus Nielsen Feltzing 10 * Copyright (C) 2002 by Linus Nielsen Feltzing
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/isp1362.c b/firmware/drivers/isp1362.c
index 473c9dc3db..7c2cd6f745 100644
--- a/firmware/drivers/isp1362.c
+++ b/firmware/drivers/isp1362.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2006 Jens Arnold 10 * Copyright (C) 2006 Jens Arnold
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/isp1583.c b/firmware/drivers/isp1583.c
index 4ad6ad20f5..34c5db1faa 100644
--- a/firmware/drivers/isp1583.c
+++ b/firmware/drivers/isp1583.c
@@ -10,8 +10,10 @@
10 * Copyright (C) 2006 by Tomasz Malesinski 10 * Copyright (C) 2006 by Tomasz Malesinski
11 * Copyright (C) 2008 by Maurus Cuelenaere 11 * Copyright (C) 2008 by Maurus Cuelenaere
12 * 12 *
13 * All files in this archive are subject to the GNU General Public License. 13 * This program is free software; you can redistribute it and/or
14 * See the file COPYING in the source tree root for full license agreement. 14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version 2
16 * of the License, or (at your option) any later version.
15 * 17 *
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied. 19 * KIND, either express or implied.
diff --git a/firmware/drivers/lcd-16bit.c b/firmware/drivers/lcd-16bit.c
index a5b7533cc1..3cbade27ee 100644
--- a/firmware/drivers/lcd-16bit.c
+++ b/firmware/drivers/lcd-16bit.c
@@ -11,8 +11,10 @@
11 * 11 *
12 * Rockbox driver for 16-bit colour LCDs 12 * Rockbox driver for 16-bit colour LCDs
13 * 13 *
14 * All files in this archive are subject to the GNU General Public License. 14 * This program is free software; you can redistribute it and/or
15 * See the file COPYING in the source tree root for full license agreement. 15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
16 * 18 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied. 20 * KIND, either express or implied.
diff --git a/firmware/drivers/lcd-1bit-vert.c b/firmware/drivers/lcd-1bit-vert.c
index ffc78bd53a..75d1e660c4 100644
--- a/firmware/drivers/lcd-1bit-vert.c
+++ b/firmware/drivers/lcd-1bit-vert.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2002 by Alan Korr 10 * Copyright (C) 2002 by Alan Korr
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/lcd-2bit-horz.c b/firmware/drivers/lcd-2bit-horz.c
index 0818c29d47..0328f9cd5f 100644
--- a/firmware/drivers/lcd-2bit-horz.c
+++ b/firmware/drivers/lcd-2bit-horz.c
@@ -13,8 +13,10 @@
13 * 13 *
14 * Copyright (c) 2006 Seven Le Mesle (sevlm@free.fr) 14 * Copyright (c) 2006 Seven Le Mesle (sevlm@free.fr)
15 * 15 *
16 * All files in this archive are subject to the GNU General Public License. 16 * This program is free software; you can redistribute it and/or
17 * See the file COPYING in the source tree root for full license agreement. 17 * modify it under the terms of the GNU General Public License
18 * as published by the Free Software Foundation; either version 2
19 * of the License, or (at your option) any later version.
18 * 20 *
19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 21 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
20 * KIND, either express or implied. 22 * KIND, either express or implied.
diff --git a/firmware/drivers/lcd-2bit-vert.c b/firmware/drivers/lcd-2bit-vert.c
index 285a592893..d12ebbc975 100644
--- a/firmware/drivers/lcd-2bit-vert.c
+++ b/firmware/drivers/lcd-2bit-vert.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2004 by Linus Nielsen Feltzing 10 * Copyright (C) 2004 by Linus Nielsen Feltzing
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/lcd-2bit-vi.c b/firmware/drivers/lcd-2bit-vi.c
index 9decc0cbab..1c0a717d13 100644
--- a/firmware/drivers/lcd-2bit-vi.c
+++ b/firmware/drivers/lcd-2bit-vi.c
@@ -11,8 +11,10 @@
11 * 11 *
12 * Rockbox driver for 2bit vertically interleaved LCDs 12 * Rockbox driver for 2bit vertically interleaved LCDs
13 * 13 *
14 * All files in this archive are subject to the GNU General Public License. 14 * This program is free software; you can redistribute it and/or
15 * See the file COPYING in the source tree root for full license agreement. 15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
16 * 18 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied. 20 * KIND, either express or implied.
diff --git a/firmware/drivers/lcd-charcell.c b/firmware/drivers/lcd-charcell.c
index 1c43b83ab1..ca5809899f 100644
--- a/firmware/drivers/lcd-charcell.c
+++ b/firmware/drivers/lcd-charcell.c
@@ -10,8 +10,10 @@
10 * Copyright (C) 2007 by Jens Arnold 10 * Copyright (C) 2007 by Jens Arnold
11 * Based on the work of Alan Korr, Kjell Ericson and others 11 * Based on the work of Alan Korr, Kjell Ericson and others
12 * 12 *
13 * All files in this archive are subject to the GNU General Public License. 13 * This program is free software; you can redistribute it and/or
14 * See the file COPYING in the source tree root for full license agreement. 14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version 2
16 * of the License, or (at your option) any later version.
15 * 17 *
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied. 19 * KIND, either express or implied.
diff --git a/firmware/drivers/lcd-charset-player.c b/firmware/drivers/lcd-charset-player.c
index 6ed4229f20..5942ae25a5 100644
--- a/firmware/drivers/lcd-charset-player.c
+++ b/firmware/drivers/lcd-charset-player.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2007 by Jens Arnold 10 * Copyright (C) 2007 by Jens Arnold
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/lcd-remote-1bit-v.c b/firmware/drivers/lcd-remote-1bit-v.c
index 5349fa0f91..f2588323e7 100644
--- a/firmware/drivers/lcd-remote-1bit-v.c
+++ b/firmware/drivers/lcd-remote-1bit-v.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2005 by Richard S. La Charité III 10 * Copyright (C) 2005 by Richard S. La Charité III
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/lcd-remote-2bit-vi.c b/firmware/drivers/lcd-remote-2bit-vi.c
index d050143468..34af8dde6f 100644
--- a/firmware/drivers/lcd-remote-2bit-vi.c
+++ b/firmware/drivers/lcd-remote-2bit-vi.c
@@ -11,8 +11,10 @@
11 * 11 *
12 * Rockbox driver for 2bit vertically interleaved remote LCDs 12 * Rockbox driver for 2bit vertically interleaved remote LCDs
13 * 13 *
14 * All files in this archive are subject to the GNU General Public License. 14 * This program is free software; you can redistribute it and/or
15 * See the file COPYING in the source tree root for full license agreement. 15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
16 * 18 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied. 20 * KIND, either express or implied.
diff --git a/firmware/drivers/led.c b/firmware/drivers/led.c
index 36748a1b18..22583364d5 100644
--- a/firmware/drivers/led.c
+++ b/firmware/drivers/led.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2002 by Alan Korr 10 * Copyright (C) 2002 by Alan Korr
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/m5636.c b/firmware/drivers/m5636.c
index e7b7a174df..193d3dcc47 100644
--- a/firmware/drivers/m5636.c
+++ b/firmware/drivers/m5636.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2006 Ulrich Pegelow 10 * Copyright (C) 2006 Ulrich Pegelow
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/mas.c b/firmware/drivers/mas.c
index 6a1b7cde9a..9d1761b419 100644
--- a/firmware/drivers/mas.c
+++ b/firmware/drivers/mas.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2002 by Linus Nielsen Feltzing 10 * Copyright (C) 2002 by Linus Nielsen Feltzing
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/pcf50605.c b/firmware/drivers/pcf50605.c
index e8e9676a2c..64a4d527ea 100644
--- a/firmware/drivers/pcf50605.c
+++ b/firmware/drivers/pcf50605.c
@@ -16,8 +16,10 @@
16 * 16 *
17 * Copyright (c) 2003-2005 Bernard Leach (leachbj@bouncycastle.org) 17 * Copyright (c) 2003-2005 Bernard Leach (leachbj@bouncycastle.org)
18 * 18 *
19 * All files in this archive are subject to the GNU General Public License. 19 * This program is free software; you can redistribute it and/or
20 * See the file COPYING in the source tree root for full license agreement. 20 * modify it under the terms of the GNU General Public License
21 * as published by the Free Software Foundation; either version 2
22 * of the License, or (at your option) any later version.
21 * 23 *
22 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 24 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
23 * KIND, either express or implied. 25 * KIND, either express or implied.
diff --git a/firmware/drivers/pcf50606.c b/firmware/drivers/pcf50606.c
index d28fc00e7d..6fb2840bca 100644
--- a/firmware/drivers/pcf50606.c
+++ b/firmware/drivers/pcf50606.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2008 by Rob Purchase 10 * Copyright (C) 2008 by Rob Purchase
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/rtc/rtc_as3514.c b/firmware/drivers/rtc/rtc_as3514.c
index 32d90b3e11..65d8359e08 100644
--- a/firmware/drivers/rtc/rtc_as3514.c
+++ b/firmware/drivers/rtc/rtc_as3514.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2007 by Barry Wardell 10 * Copyright (C) 2007 by Barry Wardell
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/rtc/rtc_ds1339_ds3231.c b/firmware/drivers/rtc/rtc_ds1339_ds3231.c
index e343c96169..d7d3f2492c 100644
--- a/firmware/drivers/rtc/rtc_ds1339_ds3231.c
+++ b/firmware/drivers/rtc/rtc_ds1339_ds3231.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2006 by Robert Kukla 10 * Copyright (C) 2006 by Robert Kukla
11 * based on Archos code by Linus Nielsen Feltzing, Uwe Freese, Laurent Baum 11 * based on Archos code by Linus Nielsen Feltzing, Uwe Freese, Laurent Baum
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/rtc/rtc_e8564.c b/firmware/drivers/rtc/rtc_e8564.c
index 322b04b20b..b4cd4b91f8 100644
--- a/firmware/drivers/rtc/rtc_e8564.c
+++ b/firmware/drivers/rtc/rtc_e8564.c
@@ -10,8 +10,10 @@
10 * Copyright (C) 2002 by Linus Nielsen Feltzing, Uwe Freese, Laurent Baum, 10 * Copyright (C) 2002 by Linus Nielsen Feltzing, Uwe Freese, Laurent Baum,
11 * Przemyslaw Holubowski 11 * Przemyslaw Holubowski
12 * 12 *
13 * All files in this archive are subject to the GNU General Public License. 13 * This program is free software; you can redistribute it and/or
14 * See the file COPYING in the source tree root for full license agreement. 14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version 2
16 * of the License, or (at your option) any later version.
15 * 17 *
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied. 19 * KIND, either express or implied.
diff --git a/firmware/drivers/rtc/rtc_m41st84w.c b/firmware/drivers/rtc/rtc_m41st84w.c
index 4e861692d8..25ea1b5ec5 100644
--- a/firmware/drivers/rtc/rtc_m41st84w.c
+++ b/firmware/drivers/rtc/rtc_m41st84w.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2002 by Linus Nielsen Feltzing, Uwe Freese, Laurent Baum 10 * Copyright (C) 2002 by Linus Nielsen Feltzing, Uwe Freese, Laurent Baum
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/rtc/rtc_mc13783.c b/firmware/drivers/rtc/rtc_mc13783.c
index 325a496646..15ed5b148b 100644
--- a/firmware/drivers/rtc/rtc_mc13783.c
+++ b/firmware/drivers/rtc/rtc_mc13783.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2008 by Michael Sevakis 10 * Copyright (C) 2008 by Michael Sevakis
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/rtc/rtc_mr100.c b/firmware/drivers/rtc/rtc_mr100.c
index 5bb6afee0c..7ec3996a87 100644
--- a/firmware/drivers/rtc/rtc_mr100.c
+++ b/firmware/drivers/rtc/rtc_mr100.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2008 by Robert Kukla 10 * Copyright (C) 2008 by Robert Kukla
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/rtc/rtc_pcf50605.c b/firmware/drivers/rtc/rtc_pcf50605.c
index 93fa391ae3..fe12766c4a 100644
--- a/firmware/drivers/rtc/rtc_pcf50605.c
+++ b/firmware/drivers/rtc/rtc_pcf50605.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2002 by Linus Nielsen Feltzing, Uwe Freese, Laurent Baum 10 * Copyright (C) 2002 by Linus Nielsen Feltzing, Uwe Freese, Laurent Baum
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/rtc/rtc_pcf50606.c b/firmware/drivers/rtc/rtc_pcf50606.c
index 9b4de44d3f..50df5a1f95 100644
--- a/firmware/drivers/rtc/rtc_pcf50606.c
+++ b/firmware/drivers/rtc/rtc_pcf50606.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2002 by Linus Nielsen Feltzing, Uwe Freese, Laurent Baum 10 * Copyright (C) 2002 by Linus Nielsen Feltzing, Uwe Freese, Laurent Baum
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/rtc/rtc_rx5x348ab.c b/firmware/drivers/rtc/rtc_rx5x348ab.c
index 429a221b1a..286cd774e3 100644
--- a/firmware/drivers/rtc/rtc_rx5x348ab.c
+++ b/firmware/drivers/rtc/rtc_rx5x348ab.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2007 by Jonathan Gordon 10 * Copyright (C) 2007 by Jonathan Gordon
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/rtc/rtc_s3c2440.c b/firmware/drivers/rtc/rtc_s3c2440.c
index c133495e17..70178efc49 100644
--- a/firmware/drivers/rtc/rtc_s3c2440.c
+++ b/firmware/drivers/rtc/rtc_s3c2440.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2002 by Linus Nielsen Feltzing, Uwe Freese, Laurent Baum 10 * Copyright (C) 2002 by Linus Nielsen Feltzing, Uwe Freese, Laurent Baum
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/rtc/rtc_tcc77x.c b/firmware/drivers/rtc/rtc_tcc77x.c
index 140adbc27b..ae1c74f8ae 100644
--- a/firmware/drivers/rtc/rtc_tcc77x.c
+++ b/firmware/drivers/rtc/rtc_tcc77x.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2008 by Dave Chapman 10 * Copyright (C) 2008 by Dave Chapman
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/rtc/rtc_zenvisionm.c b/firmware/drivers/rtc/rtc_zenvisionm.c
index b44af65c42..77bf99088c 100644
--- a/firmware/drivers/rtc/rtc_zenvisionm.c
+++ b/firmware/drivers/rtc/rtc_zenvisionm.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2008 by Maurus Cuelenaere 10 * Copyright (C) 2008 by Maurus Cuelenaere
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/serial.c b/firmware/drivers/serial.c
index 8294bc7018..961974e987 100644
--- a/firmware/drivers/serial.c
+++ b/firmware/drivers/serial.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2002 by Alan Korr & Nick Robinson 10 * Copyright (C) 2002 by Alan Korr & Nick Robinson
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/sw_i2c.c b/firmware/drivers/sw_i2c.c
index c1f6868226..028995e768 100644
--- a/firmware/drivers/sw_i2c.c
+++ b/firmware/drivers/sw_i2c.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2006 by Miika Pekkarinen 10 * Copyright (C) 2006 by Miika Pekkarinen
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/tsc2100.c b/firmware/drivers/tsc2100.c
index bf2a05ce93..88402fe3ad 100644
--- a/firmware/drivers/tsc2100.c
+++ b/firmware/drivers/tsc2100.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2007 by Jonathan Gordon 10 * Copyright (C) 2007 by Jonathan Gordon
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/firmware/drivers/tuner/lv24020lp.c b/firmware/drivers/tuner/lv24020lp.c
index a1af38c89d..0f61e5d72b 100644
--- a/firmware/drivers/tuner/lv24020lp.c
+++ b/firmware/drivers/tuner/lv24020lp.c
@@ -10,8 +10,10 @@
10 * 10 *
11 * Copyright (C) 2007 Ivan Zupan 11 * Copyright (C) 2007 Ivan Zupan
12 * 12 *
13 * All files in this archive are subject to the GNU General Public License. 13 * This program is free software; you can redistribute it and/or
14 * See the file COPYING in the source tree root for full license agreement. 14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version 2
16 * of the License, or (at your option) any later version.
15 * 17 *
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied. 19 * KIND, either express or implied.
diff --git a/firmware/drivers/tuner/s1a0903x01.c b/firmware/drivers/tuner/s1a0903x01.c
index cdeba2b3b4..517d41984d 100644
--- a/firmware/drivers/tuner/s1a0903x01.c
+++ b/firmware/drivers/tuner/s1a0903x01.c
@@ -10,8 +10,10 @@
10 * 10 *
11 * Copyright (C) 2003 Linus Nielsen Feltzing 11 * Copyright (C) 2003 Linus Nielsen Feltzing
12 * 12 *
13 * All files in this archive are subject to the GNU General Public License. 13 * This program is free software; you can redistribute it and/or
14 * See the file COPYING in the source tree root for full license agreement. 14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version 2
16 * of the License, or (at your option) any later version.
15 * 17 *
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied. 19 * KIND, either express or implied.
diff --git a/firmware/drivers/tuner/tea5760uk.c b/firmware/drivers/tuner/tea5760uk.c
index 8582358114..781e51967c 100644
--- a/firmware/drivers/tuner/tea5760uk.c
+++ b/firmware/drivers/tuner/tea5760uk.c
@@ -10,8 +10,10 @@
10 * 10 *
11 * Copyright (C) 2004 Jörg Hohensohn 11 * Copyright (C) 2004 Jörg Hohensohn
12 * 12 *
13 * All files in this archive are subject to the GNU General Public License. 13 * This program is free software; you can redistribute it and/or
14 * See the file COPYING in the source tree root for full license agreement. 14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version 2
16 * of the License, or (at your option) any later version.
15 * 17 *
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied. 19 * KIND, either express or implied.
diff --git a/firmware/drivers/tuner/tea5767.c b/firmware/drivers/tuner/tea5767.c
index 1693b63751..2d18a0fdf7 100644
--- a/firmware/drivers/tuner/tea5767.c
+++ b/firmware/drivers/tuner/tea5767.c
@@ -10,8 +10,10 @@
10 * 10 *
11 * Copyright (C) 2004 Jörg Hohensohn 11 * Copyright (C) 2004 Jörg Hohensohn
12 * 12 *
13 * All files in this archive are subject to the GNU General Public License. 13 * This program is free software; you can redistribute it and/or
14 * See the file COPYING in the source tree root for full license agreement. 14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version 2
16 * of the License, or (at your option) any later version.
15 * 17 *
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied. 19 * KIND, either express or implied.