2005-04-16 22:20:36 +00:00
|
|
|
/* ------------------------------------------------------------------------- */
|
2006-12-10 20:21:31 +00:00
|
|
|
/* */
|
2005-08-11 21:52:35 +00:00
|
|
|
/* i2c-id.h - identifier values for i2c drivers and adapters */
|
2006-12-10 20:21:31 +00:00
|
|
|
/* */
|
2005-04-16 22:20:36 +00:00
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
/* Copyright (C) 1995-1999 Simon G. Vogl
|
|
|
|
|
|
|
|
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. */
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
#ifndef LINUX_I2C_ID_H
|
|
|
|
#define LINUX_I2C_ID_H
|
|
|
|
|
2008-01-14 20:53:31 +00:00
|
|
|
/* Please note that I2C driver IDs are optional. They are only needed if a
|
|
|
|
legacy chip driver needs to identify a bus or a bus driver needs to
|
|
|
|
identify a legacy client. If you don't need them, just don't set them. */
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* ---- Adapter types ----------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2006-12-10 20:21:31 +00:00
|
|
|
/* --- Bit algorithm adapters */
|
2005-08-11 21:41:56 +00:00
|
|
|
#define I2C_HW_B_CX2388x 0x01001b /* connexant 2388x based tv cards */
|
2005-08-11 21:51:10 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif /* LINUX_I2C_ID_H */
|