diff options
Diffstat (limited to 'include/linux/i2c-ns9xxx.h')
-rw-r--r-- | include/linux/i2c-ns9xxx.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/include/linux/i2c-ns9xxx.h b/include/linux/i2c-ns9xxx.h new file mode 100644 index 000000000000..0e9e1797f51a --- /dev/null +++ b/include/linux/i2c-ns9xxx.h @@ -0,0 +1,22 @@ +/* + * include/linux/i2c-ns9xxx.h + * + * Copyright (C) 2008 by Digi International Inc. + * All rights reserved. + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 as published by + * the Free Software Foundation. + */ +#ifndef _LINUX_I2C_NS9XXX_H +#define _LINUX_I2C_NS9XXX_H + +struct plat_ns9xxx_i2c { + unsigned int gpio_scl; + unsigned int gpio_sda; + unsigned int speed; + void (*gpio_configuration_func)(void); +}; + +#endif /* ifndef _LINUX_I2C_NS9XXX_H */ + |