Skip to content

Commit

Permalink
Sanitise linux/i2c-algo-ite.h for userspace consumption
Browse files Browse the repository at this point in the history
It doesn't need to include i2c.h, because a forward declaration of
struct i2c_adapter is perfectly sufficient. And it can be inside
#ifdef __KERNEL__ along with the kernel-internal structure definition.

Signed-off-by: David Woodhouse <dwmw2@infradead.org>
  • Loading branch information
David Woodhouse committed Apr 25, 2006
1 parent 34186ef commit 5a570cc
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions include/linux/i2c-algo-ite.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#ifndef I2C_ALGO_ITE_H
#define I2C_ALGO_ITE_H 1

#include <linux/i2c.h>
#include <linux/types.h>

/* Example of a sequential read request:
struct i2c_iic_msg s_msg;
Expand All @@ -49,6 +49,9 @@ struct i2c_iic_msg {
char *buf; /* pointer to msg data */
};

#ifdef __KERNEL__
struct i2c_adapter;

struct i2c_algo_iic_data {
void *data; /* private data for lolevel routines */
void (*setiic) (void *data, int ctl, int val);
Expand All @@ -65,5 +68,5 @@ struct i2c_algo_iic_data {

int i2c_iic_add_bus(struct i2c_adapter *);
int i2c_iic_del_bus(struct i2c_adapter *);

#endif /* __KERNEL__ */
#endif /* I2C_ALGO_ITE_H */

0 comments on commit 5a570cc

Please sign in to comment.