diff options
author | Oliver Endriss <devnull@localhost> | 2003-11-14 21:41:42 +0000 |
---|---|---|
committer | Oliver Endriss <devnull@localhost> | 2003-11-14 21:41:42 +0000 |
commit | d3c69805048ad44e80e7e7ab8878c43cfe4c8149 (patch) | |
tree | dbb14f65bd1531434a7fabc47f1f36fdb17ce5e7 /linux/drivers/media/dvb/dvb-core | |
parent | c05e45a15c46a2269ef3dfc38e6fef219a7edaa4 (diff) | |
download | mediapointer-dvb-s2-d3c69805048ad44e80e7e7ab8878c43cfe4c8149.tar.gz mediapointer-dvb-s2-d3c69805048ad44e80e7e7ab8878c43cfe4c8149.tar.bz2 |
change license GPL -> LGPL
Diffstat (limited to 'linux/drivers/media/dvb/dvb-core')
-rw-r--r-- | linux/drivers/media/dvb/dvb-core/dvb_ringbuffer.c | 30 | ||||
-rw-r--r-- | linux/drivers/media/dvb/dvb-core/dvb_ringbuffer.h | 4 |
2 files changed, 14 insertions, 20 deletions
diff --git a/linux/drivers/media/dvb/dvb-core/dvb_ringbuffer.c b/linux/drivers/media/dvb/dvb-core/dvb_ringbuffer.c index 86674212a..b6469aa2c 100644 --- a/linux/drivers/media/dvb/dvb-core/dvb_ringbuffer.c +++ b/linux/drivers/media/dvb/dvb-core/dvb_ringbuffer.c @@ -9,24 +9,18 @@ * & Marcus Metzler for convergence integrated media GmbH * * 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 + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 * 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. - * + * GNU Lesser General Public License for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * Or, point your browser to http://www.gnu.org/copyleft/gpl.html - * - * - * the project's page is at http://www.linuxtv.org/dvb/ */ @@ -167,11 +161,11 @@ ssize_t dvb_ringbuffer_write(struct dvb_ringbuffer *rbuf, const u8 *buf, } -EXPORT_SYMBOL_GPL(dvb_ringbuffer_init); -EXPORT_SYMBOL_GPL(dvb_ringbuffer_empty); -EXPORT_SYMBOL_GPL(dvb_ringbuffer_free); -EXPORT_SYMBOL_GPL(dvb_ringbuffer_avail); -EXPORT_SYMBOL_GPL(dvb_ringbuffer_flush); -EXPORT_SYMBOL_GPL(dvb_ringbuffer_flush_spinlock_wakeup); -EXPORT_SYMBOL_GPL(dvb_ringbuffer_read); -EXPORT_SYMBOL_GPL(dvb_ringbuffer_write); +EXPORT_SYMBOL(dvb_ringbuffer_init); +EXPORT_SYMBOL(dvb_ringbuffer_empty); +EXPORT_SYMBOL(dvb_ringbuffer_free); +EXPORT_SYMBOL(dvb_ringbuffer_avail); +EXPORT_SYMBOL(dvb_ringbuffer_flush); +EXPORT_SYMBOL(dvb_ringbuffer_flush_spinlock_wakeup); +EXPORT_SYMBOL(dvb_ringbuffer_read); +EXPORT_SYMBOL(dvb_ringbuffer_write); diff --git a/linux/drivers/media/dvb/dvb-core/dvb_ringbuffer.h b/linux/drivers/media/dvb/dvb-core/dvb_ringbuffer.h index 2e2a23cd6..50cd1a6d9 100644 --- a/linux/drivers/media/dvb/dvb-core/dvb_ringbuffer.h +++ b/linux/drivers/media/dvb/dvb-core/dvb_ringbuffer.h @@ -16,11 +16,11 @@ * 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. + * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _DVB_RINGBUFFER_H_ |