[zaptel-commits] kpfleming: branch 1.4 r4482 - in /branches/1.4: ./ kernel/ kernel/wct4xxp/ ke...
SVN commits to the Zaptel project
zaptel-commits at lists.digium.com
Wed Aug 13 19:58:37 CDT 2008
Author: kpfleming
Date: Wed Aug 13 19:58:36 2008
New Revision: 4482
URL: http://svn.digium.com/view/zaptel?view=rev&rev=4482
Log:
more license header updates
Modified:
branches/1.4/fxotune.c
branches/1.4/fxstest.c
branches/1.4/hdlcgen.c
branches/1.4/hdlcstress.c
branches/1.4/hdlctest.c
branches/1.4/hdlcverify.c
branches/1.4/kernel/adt_lec.c
branches/1.4/kernel/makefw.c
branches/1.4/kernel/pciradio.c
branches/1.4/kernel/tor2.c
branches/1.4/kernel/torisa.c
branches/1.4/kernel/voicebus.c
branches/1.4/kernel/wcfxo.c
branches/1.4/kernel/wct1xxp.c
branches/1.4/kernel/wct4xxp/base.c
branches/1.4/kernel/wct4xxp/vpm450m.c
branches/1.4/kernel/wct4xxp/wct4xxp-diag.c
branches/1.4/kernel/wctc4xxp/base.c
branches/1.4/kernel/wctc4xxp/codec_test.c
branches/1.4/kernel/wctdm.c
branches/1.4/kernel/wctdm24xxp/GpakApi.c
branches/1.4/kernel/wctdm24xxp/GpakCust.c
branches/1.4/kernel/wctdm24xxp/base.c
branches/1.4/kernel/wcte11xp.c
branches/1.4/kernel/wcte12xp/GpakApi.c
branches/1.4/kernel/wcte12xp/base.c
branches/1.4/kernel/wcte12xp/vpmadt032.c
branches/1.4/kernel/wcusb.c
branches/1.4/kernel/zaptel-base.c
branches/1.4/kernel/ztd-eth.c
branches/1.4/kernel/ztd-loc.c
branches/1.4/kernel/ztdummy.c
branches/1.4/kernel/ztdynamic.c
branches/1.4/kernel/zttranscode.c
branches/1.4/patgen.c
branches/1.4/patlooptest.c
branches/1.4/pattest.c
branches/1.4/ppp/zaptel.c
branches/1.4/sethdlc-new.c
branches/1.4/sethdlc.c
branches/1.4/timertest.c
branches/1.4/tonezone.c
branches/1.4/torisatool.c
branches/1.4/usbfxstest.c
branches/1.4/zonedata.c
branches/1.4/ztcfg-dude.c
branches/1.4/ztcfg.c
branches/1.4/ztdiag.c
branches/1.4/ztmonitor.c
branches/1.4/ztscan.c
branches/1.4/ztspeed.c
branches/1.4/zttest.c
branches/1.4/zttool.c
Modified: branches/1.4/fxotune.c
URL: http://svn.digium.com/view/zaptel/branches/1.4/fxotune.c?view=diff&rev=4482&r1=4481&r2=4482
==============================================================================
--- branches/1.4/fxotune.c (original)
+++ branches/1.4/fxotune.c Wed Aug 13 19:58:36 2008
@@ -1,14 +1,23 @@
/*
- * This file and contents thereof are licensed under the terms and
- * conditions of the GNU Public License version 2. For more information
- * (including terms and conditions) see http://www.gnu.org/
- *
* fxotune.c -- A utility for tuning the various settings on the fxo
* modules for the TDM400 cards.
*
* by Matthew Fredrickson <creslin at digium.com>
*
* (C) 2004-2005 Digium, Inc.
+ */
+
+/*
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2 as published by the
+ * Free Software Foundation. See the LICENSE file included with
+ * this program for more details.
*/
#include <stdio.h>
Modified: branches/1.4/fxstest.c
URL: http://svn.digium.com/view/zaptel/branches/1.4/fxstest.c?view=diff&rev=4482&r1=4481&r2=4482
==============================================================================
--- branches/1.4/fxstest.c (original)
+++ branches/1.4/fxstest.c Wed Aug 13 19:58:36 2008
@@ -1,3 +1,16 @@
+/*
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2 as published by the
+ * Free Software Foundation. See the LICENSE file included with
+ * this program for more details.
+ */
+
#include <stdio.h>
#include <string.h>
#include <errno.h>
Modified: branches/1.4/hdlcgen.c
URL: http://svn.digium.com/view/zaptel/branches/1.4/hdlcgen.c?view=diff&rev=4482&r1=4481&r2=4482
==============================================================================
--- branches/1.4/hdlcgen.c (original)
+++ branches/1.4/hdlcgen.c Wed Aug 13 19:58:36 2008
@@ -1,3 +1,16 @@
+/*
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2 as published by the
+ * Free Software Foundation. See the LICENSE file included with
+ * this program for more details.
+ */
+
#define FAST_HDLC_NEED_TABLES
#include "kernel/fasthdlc.h"
#include <stdio.h>
Modified: branches/1.4/hdlcstress.c
URL: http://svn.digium.com/view/zaptel/branches/1.4/hdlcstress.c?view=diff&rev=4482&r1=4481&r2=4482
==============================================================================
--- branches/1.4/hdlcstress.c (original)
+++ branches/1.4/hdlcstress.c Wed Aug 13 19:58:36 2008
@@ -1,3 +1,16 @@
+/*
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2 as published by the
+ * Free Software Foundation. See the LICENSE file included with
+ * this program for more details.
+ */
+
#include <stdio.h>
#include <fcntl.h>
#include <string.h>
Modified: branches/1.4/hdlctest.c
URL: http://svn.digium.com/view/zaptel/branches/1.4/hdlctest.c?view=diff&rev=4482&r1=4481&r2=4482
==============================================================================
--- branches/1.4/hdlctest.c (original)
+++ branches/1.4/hdlctest.c Wed Aug 13 19:58:36 2008
@@ -1,3 +1,16 @@
+/*
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2 as published by the
+ * Free Software Foundation. See the LICENSE file included with
+ * this program for more details.
+ */
+
#include <stdio.h>
#include <fcntl.h>
#include <string.h>
Modified: branches/1.4/hdlcverify.c
URL: http://svn.digium.com/view/zaptel/branches/1.4/hdlcverify.c?view=diff&rev=4482&r1=4481&r2=4482
==============================================================================
--- branches/1.4/hdlcverify.c (original)
+++ branches/1.4/hdlcverify.c Wed Aug 13 19:58:36 2008
@@ -1,3 +1,16 @@
+/*
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2 as published by the
+ * Free Software Foundation. See the LICENSE file included with
+ * this program for more details.
+ */
+
#define FAST_HDLC_NEED_TABLES
#include "kernel/fasthdlc.h"
#include <stdio.h>
Modified: branches/1.4/kernel/adt_lec.c
URL: http://svn.digium.com/view/zaptel/branches/1.4/kernel/adt_lec.c?view=diff&rev=4482&r1=4481&r2=4482
==============================================================================
--- branches/1.4/kernel/adt_lec.c (original)
+++ branches/1.4/kernel/adt_lec.c Wed Aug 13 19:58:36 2008
@@ -7,19 +7,19 @@
*
* All rights reserved.
*
- * 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, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+/*
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2 as published by the
+ * Free Software Foundation. See the LICENSE file included with
+ * this program for more details.
*/
#ifndef _ADT_LEC_C
Modified: branches/1.4/kernel/makefw.c
URL: http://svn.digium.com/view/zaptel/branches/1.4/kernel/makefw.c?view=diff&rev=4482&r1=4481&r2=4482
==============================================================================
--- branches/1.4/kernel/makefw.c (original)
+++ branches/1.4/kernel/makefw.c Wed Aug 13 19:58:36 2008
@@ -1,6 +1,5 @@
/* Xilinx firmware convertor program.
*
- *
* Written by Jim Dixon <jim at lambdatel.com>.
*
* Copyright (C) 2001 Jim Dixon / Zapata Telephony.
@@ -8,22 +7,19 @@
*
* All rights reserved.
*
- * This program is free software; you can redistribute it and/or modify
- * it under thet erms 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, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+/*
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
*
- * Primary Author: Mark Spencer <markster at digium.com>
- *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2 as published by the
+ * Free Software Foundation. See the LICENSE file included with
+ * this program for more details.
*/
#include <stdio.h>
Modified: branches/1.4/kernel/pciradio.c
URL: http://svn.digium.com/view/zaptel/branches/1.4/kernel/pciradio.c?view=diff&rev=4482&r1=4481&r2=4482
==============================================================================
--- branches/1.4/kernel/pciradio.c (original)
+++ branches/1.4/kernel/pciradio.c Wed Aug 13 19:58:36 2008
@@ -10,20 +10,19 @@
*
* All rights reserved.
*
- * 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, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+/*
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
*
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2 as published by the
+ * Free Software Foundation. See the LICENSE file included with
+ * this program for more details.
*/
/*
Modified: branches/1.4/kernel/tor2.c
URL: http://svn.digium.com/view/zaptel/branches/1.4/kernel/tor2.c?view=diff&rev=4482&r1=4481&r2=4482
==============================================================================
--- branches/1.4/kernel/tor2.c (original)
+++ branches/1.4/kernel/tor2.c Wed Aug 13 19:58:36 2008
@@ -10,19 +10,19 @@
*
* All rights reserved.
*
- * 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, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+/*
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2 as published by the
+ * Free Software Foundation. See the LICENSE file included with
+ * this program for more details.
*/
#include <linux/kernel.h>
Modified: branches/1.4/kernel/torisa.c
URL: http://svn.digium.com/view/zaptel/branches/1.4/kernel/torisa.c?view=diff&rev=4482&r1=4481&r2=4482
==============================================================================
--- branches/1.4/kernel/torisa.c (original)
+++ branches/1.4/kernel/torisa.c Wed Aug 13 19:58:36 2008
@@ -1,22 +1,21 @@
/*
* Zapata Telephony "Tormenta" ISA card LINUX driver, version 2.2 11/29/01
*
- * 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, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- *
* Modified from original tor.c by Mark Spencer <markster at digium.com>
* original by Jim Dixon <jim at lambdatel.com>
+ */
+
+/*
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2 as published by the
+ * Free Software Foundation. See the LICENSE file included with
+ * this program for more details.
*/
#include <linux/version.h>
Modified: branches/1.4/kernel/voicebus.c
URL: http://svn.digium.com/view/zaptel/branches/1.4/kernel/voicebus.c?view=diff&rev=4482&r1=4481&r2=4482
==============================================================================
--- branches/1.4/kernel/voicebus.c (original)
+++ branches/1.4/kernel/voicebus.c Wed Aug 13 19:58:36 2008
@@ -10,26 +10,25 @@
*
* All rights reserved.
*
- * 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, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- *
* VoiceBus is a registered trademark of Digium.
*
* \todo Make the client drivers back out gracefully when presented with a
* signal.
* \todo Modify clients to sleep with timeout when waiting for interrupt.
* \todo Check on a 64-bit CPU / Kernel
+ */
+
+/*
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2 as published by the
+ * Free Software Foundation. See the LICENSE file included with
+ * this program for more details.
*/
#include <linux/version.h>
Modified: branches/1.4/kernel/wcfxo.c
URL: http://svn.digium.com/view/zaptel/branches/1.4/kernel/wcfxo.c?view=diff&rev=4482&r1=4481&r2=4482
==============================================================================
--- branches/1.4/kernel/wcfxo.c (original)
+++ branches/1.4/kernel/wcfxo.c Wed Aug 13 19:58:36 2008
@@ -8,20 +8,19 @@
*
* All rights reserved.
*
- * 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.
+ */
+
+/*
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
*
- * 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, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2 as published by the
+ * Free Software Foundation. See the LICENSE file included with
+ * this program for more details.
*/
#include <linux/kernel.h>
Modified: branches/1.4/kernel/wct1xxp.c
URL: http://svn.digium.com/view/zaptel/branches/1.4/kernel/wct1xxp.c?view=diff&rev=4482&r1=4481&r2=4482
==============================================================================
--- branches/1.4/kernel/wct1xxp.c (original)
+++ branches/1.4/kernel/wct1xxp.c Wed Aug 13 19:58:36 2008
@@ -9,19 +9,19 @@
*
* All rights reserved.
*
- * 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, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+/*
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2 as published by the
+ * Free Software Foundation. See the LICENSE file included with
+ * this program for more details.
*/
#include <linux/kernel.h>
Modified: branches/1.4/kernel/wct4xxp/base.c
URL: http://svn.digium.com/view/zaptel/branches/1.4/kernel/wct4xxp/base.c?view=diff&rev=4482&r1=4481&r2=4482
==============================================================================
--- branches/1.4/kernel/wct4xxp/base.c (original)
+++ branches/1.4/kernel/wct4xxp/base.c Wed Aug 13 19:58:36 2008
@@ -10,20 +10,19 @@
*
* All rights reserved.
*
- * 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, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+/*
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
*
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2 as published by the
+ * Free Software Foundation. See the LICENSE file included with
+ * this program for more details.
*/
#include <linux/kernel.h>
Modified: branches/1.4/kernel/wct4xxp/vpm450m.c
URL: http://svn.digium.com/view/zaptel/branches/1.4/kernel/wct4xxp/vpm450m.c?view=diff&rev=4482&r1=4481&r2=4482
==============================================================================
--- branches/1.4/kernel/wct4xxp/vpm450m.c (original)
+++ branches/1.4/kernel/wct4xxp/vpm450m.c Wed Aug 13 19:58:36 2008
@@ -4,6 +4,19 @@
* Mark Spencer <markster at digium.com>
*
* All Rights Reserved
+ */
+
+/*
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2 as published by the
+ * Free Software Foundation. See the LICENSE file included with
+ * this program for more details.
*/
#include <linux/slab.h>
Modified: branches/1.4/kernel/wct4xxp/wct4xxp-diag.c
URL: http://svn.digium.com/view/zaptel/branches/1.4/kernel/wct4xxp/wct4xxp-diag.c?view=diff&rev=4482&r1=4481&r2=4482
==============================================================================
--- branches/1.4/kernel/wct4xxp/wct4xxp-diag.c (original)
+++ branches/1.4/kernel/wct4xxp/wct4xxp-diag.c Wed Aug 13 19:58:36 2008
@@ -1,3 +1,16 @@
+/*
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2 as published by the
+ * Free Software Foundation. See the LICENSE file included with
+ * this program for more details.
+ */
+
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
Modified: branches/1.4/kernel/wctc4xxp/base.c
URL: http://svn.digium.com/view/zaptel/branches/1.4/kernel/wctc4xxp/base.c?view=diff&rev=4482&r1=4481&r2=4482
==============================================================================
--- branches/1.4/kernel/wctc4xxp/base.c (original)
+++ branches/1.4/kernel/wctc4xxp/base.c Wed Aug 13 19:58:36 2008
@@ -7,22 +7,20 @@
*
* All rights reserved.
*
- * 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, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+/*
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
*
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2 as published by the
+ * Free Software Foundation. See the LICENSE file included with
+ * this program for more details.
*/
-
#include <linux/kernel.h>
#include <linux/errno.h>
Modified: branches/1.4/kernel/wctc4xxp/codec_test.c
URL: http://svn.digium.com/view/zaptel/branches/1.4/kernel/wctc4xxp/codec_test.c?view=diff&rev=4482&r1=4481&r2=4482
==============================================================================
--- branches/1.4/kernel/wctc4xxp/codec_test.c (original)
+++ branches/1.4/kernel/wctc4xxp/codec_test.c Wed Aug 13 19:58:36 2008
@@ -7,23 +7,20 @@
*
* All rights reserved.
*
- * 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, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- *
*/
-
+/*
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2 as published by the
+ * Free Software Foundation. See the LICENSE file included with
+ * this program for more details.
+ */
#include <fcntl.h>
#include <stdlib.h>
Modified: branches/1.4/kernel/wctdm.c
URL: http://svn.digium.com/view/zaptel/branches/1.4/kernel/wctdm.c?view=diff&rev=4482&r1=4481&r2=4482
==============================================================================
--- branches/1.4/kernel/wctdm.c (original)
+++ branches/1.4/kernel/wctdm.c Wed Aug 13 19:58:36 2008
@@ -8,20 +8,19 @@
*
* All rights reserved.
*
- * 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, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+/*
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
*
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2 as published by the
+ * Free Software Foundation. See the LICENSE file included with
+ * this program for more details.
*/
#include <linux/kernel.h>
Modified: branches/1.4/kernel/wctdm24xxp/GpakApi.c
URL: http://svn.digium.com/view/zaptel/branches/1.4/kernel/wctdm24xxp/GpakApi.c?view=diff&rev=4482&r1=4481&r2=4482
==============================================================================
--- branches/1.4/kernel/wctdm24xxp/GpakApi.c (original)
+++ branches/1.4/kernel/wctdm24xxp/GpakApi.c Wed Aug 13 19:58:36 2008
@@ -15,22 +15,21 @@
* 11/15/2006 - 24 TDM-TDM Channels EC release
*
* This program has been released under the terms of the GPL version 2 by
- * permission of Adaptive Digital Technologies, Inc. The standard
- * GPL disclaimer is given inline below for your convenience.
- *
- * 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, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ * permission of Adaptive Digital Technologies, Inc.
+ *
+ */
+
+/*
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2 as published by the
+ * Free Software Foundation. See the LICENSE file included with
+ * this program for more details.
*/
#include <linux/version.h>
Modified: branches/1.4/kernel/wctdm24xxp/GpakCust.c
URL: http://svn.digium.com/view/zaptel/branches/1.4/kernel/wctdm24xxp/GpakCust.c?view=diff&rev=4482&r1=4481&r2=4482
==============================================================================
--- branches/1.4/kernel/wctdm24xxp/GpakCust.c (original)
+++ branches/1.4/kernel/wctdm24xxp/GpakCust.c Wed Aug 13 19:58:36 2008
@@ -16,23 +16,21 @@
* 06/15/05 - Initial release.
*
* This program has been released under the terms of the GPL version 2 by
- * permission of Adaptive Digital Technologies, Inc. The standard
- * GPL disclaimer is given inline below for your convenience.
- *
- * 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, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- *
+ * permission of Adaptive Digital Technologies, Inc.
+ *
+ */
+
+/*
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2 as published by the
+ * Free Software Foundation. See the LICENSE file included with
+ * this program for more details.
*/
#include <linux/version.h>
Modified: branches/1.4/kernel/wctdm24xxp/base.c
URL: http://svn.digium.com/view/zaptel/branches/1.4/kernel/wctdm24xxp/base.c?view=diff&rev=4482&r1=4481&r2=4482
==============================================================================
--- branches/1.4/kernel/wctdm24xxp/base.c (original)
+++ branches/1.4/kernel/wctdm24xxp/base.c Wed Aug 13 19:58:36 2008
@@ -11,21 +11,21 @@
* Copyright (C) 2006, Jim Dixon and QRV Communications
* All rights reserved.
*
- * 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, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+/*
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
*
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2 as published by the
+ * Free Software Foundation. See the LICENSE file included with
+ * this program for more details.
*/
+
/* For QRV DRI cards, gain is signed short, expressed in hundredths of
db (in reference to 1v Peak @ 1000Hz) , as follows:
Modified: branches/1.4/kernel/wcte11xp.c
URL: http://svn.digium.com/view/zaptel/branches/1.4/kernel/wcte11xp.c?view=diff&rev=4482&r1=4481&r2=4482
==============================================================================
--- branches/1.4/kernel/wcte11xp.c (original)
+++ branches/1.4/kernel/wcte11xp.c Wed Aug 13 19:58:36 2008
@@ -9,19 +9,19 @@
*
* All rights reserved.
*
- * 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, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+/*
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2 as published by the
+ * Free Software Foundation. See the LICENSE file included with
+ * this program for more details.
*/
#include <linux/kernel.h>
Modified: branches/1.4/kernel/wcte12xp/GpakApi.c
URL: http://svn.digium.com/view/zaptel/branches/1.4/kernel/wcte12xp/GpakApi.c?view=diff&rev=4482&r1=4481&r2=4482
==============================================================================
--- branches/1.4/kernel/wcte12xp/GpakApi.c (original)
+++ branches/1.4/kernel/wcte12xp/GpakApi.c Wed Aug 13 19:58:36 2008
@@ -15,22 +15,21 @@
* 11/15/2006 - 24 TDM-TDM Channels EC release
*
* This program has been released under the terms of the GPL version 2 by
- * permission of Adaptive Digital Technologies, Inc. The standard
- * GPL disclaimer is given inline below for your convenience.
- *
- * 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, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ * permission of Adaptive Digital Technologies, Inc.
+ *
+ */
+
+/*
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2 as published by the
+ * Free Software Foundation. See the LICENSE file included with
+ * this program for more details.
*/
#include "zaptel.h"
Modified: branches/1.4/kernel/wcte12xp/base.c
URL: http://svn.digium.com/view/zaptel/branches/1.4/kernel/wcte12xp/base.c?view=diff&rev=4482&r1=4481&r2=4482
==============================================================================
--- branches/1.4/kernel/wcte12xp/base.c (original)
+++ branches/1.4/kernel/wcte12xp/base.c Wed Aug 13 19:58:36 2008
@@ -12,20 +12,19 @@
*
* All rights reserved.
*
- * 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.
- *
[... 974 lines stripped ...]
More information about the zaptel-commits
mailing list