/*12Types and defines needed for RDS. This is included by3saa6588.c and every driver (e.g. bttv-driver.c) that wants4to use the saa6588 module.56(c) 2005 by Hans J. Koch78This program is free software; you can redistribute it and/or modify9it under the terms of the GNU General Public License as published by10the Free Software Foundation; either version 2 of the License, or11(at your option) any later version.1213This program is distributed in the hope that it will be useful,14but WITHOUT ANY WARRANTY; without even the implied warranty of15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the16GNU General Public License for more details.1718You should have received a copy of the GNU General Public License19along with this program; if not, write to the Free Software20Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.2122*/2324#ifndef _SAA6588_H25#define _SAA6588_H2627struct saa6588_command {28unsigned int block_count;29int result;30unsigned char __user *buffer;31struct file *instance;32poll_table *event_list;33};3435/* These ioctls are internal to the kernel */36#define SAA6588_CMD_OPEN _IOW('R', 1, int)37#define SAA6588_CMD_CLOSE _IOW('R', 2, int)38#define SAA6588_CMD_READ _IOR('R', 3, int)39#define SAA6588_CMD_POLL _IOR('R', 4, int)4041#endif424344