diff options
author | Michael Hunold <devnull@localhost> | 2003-01-10 22:53:18 +0000 |
---|---|---|
committer | Michael Hunold <devnull@localhost> | 2003-01-10 22:53:18 +0000 |
commit | fc5c5844077c7478f7d0b67a1a7967f79d9376ba (patch) | |
tree | 3fa2be55940704feeb1dcac8cb8f7f60174870d6 /linux/drivers/media/video/tea6415c.h | |
parent | 7a3f9d523410405ddeb5a18045135d08a81981a0 (diff) | |
download | mediapointer-dvb-s2-fc5c5844077c7478f7d0b67a1a7967f79d9376ba.tar.gz mediapointer-dvb-s2-fc5c5844077c7478f7d0b67a1a7967f79d9376ba.tar.bz2 |
- Fix broken i2c irq transfer, due to Holger's changes
- clean up the mxb driver and it's helper modules (rename the
structures, add GPL license to the appropriate files, c99
initialisers)
- fix 2.5.55 "module insertion causes bug in kobject.o" issue
- fixed missing exported symbols in budget-core
Diffstat (limited to 'linux/drivers/media/video/tea6415c.h')
-rw-r--r-- | linux/drivers/media/video/tea6415c.h | 33 |
1 files changed, 2 insertions, 31 deletions
diff --git a/linux/drivers/media/video/tea6415c.h b/linux/drivers/media/video/tea6415c.h index 775fb6fe8..f84ed8005 100644 --- a/linux/drivers/media/video/tea6415c.h +++ b/linux/drivers/media/video/tea6415c.h @@ -1,32 +1,3 @@ - /* - tea6415c.h - definitions for the i2c-driver - for the tea6415c by SGS Thomson - - Copyright (C) 1998,1999,2000 Michael Hunold <michael@mihu.de> - - The tea6415c is a bus controlled video-matrix-switch - with 8 inputs and 6 outputs. - It is cascadable, i.e. it can be found at the addresses - 0x86 and 0x06 on the i2c-bus. - - For detailed informations download the specifications directly - from SGS Thomson at http://www.st.com - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License vs 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 Mvss Ave, Cambridge, MA 02139, USA. - */ - #ifndef __INCLUDED_TEA6415C__ #define __INCLUDED_TEA6415C__ @@ -57,12 +28,12 @@ #define TEA6415C_INPUT7 1 #define TEA6415C_INPUT8 11 -struct tea6415c_video_multiplex +struct tea6415c_multiplex { int in; /* input-pin */ int out; /* output-pin */ }; -#define TEA6415C_SWITCH _IOW('t',1,struct tea6415c_video_multiplex) +#define TEA6415C_SWITCH _IOW('v',1,struct tea6415c_multiplex) #endif |