/* * tw68_ts.c * Part of the device driver for Techwell 68xx based cards * * Much of this code is derived from the cx88 and sa7134 drivers, which * were in turn derived from the bt87x driver. The original work was by * Gerd Knorr; more recently the code was enhanced by Mauro Carvalho Chehab, * Hans Verkuil, Andy Walls and many others. Their work is gratefully * acknowledged. Full credit goes to them - any problems within this code * are mine. * * Copyright (C) 2009 William M. Brack * * 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., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "tw68.h" int tw68_ts_init1(struct tw68_dev *dev) { return 0; } int tw68_ts_ini(struct tw68_dev *dev) { return 0; } int tw68_ts_fini(struct tw68_dev *dev) { return 0; } void tw68_irq_ts_done(struct tw68_dev *dev, unsigned long status) { return; } int tw68_ts_register(struct tw68_mpeg_ops *ops) { return 0; } void tw68_ts_unregister(struct tw68_mpeg_ops *ops) { return; } int tw68_ts_init_hw(struct tw68_dev *dev) { return 0; }