Skip to content

Commit

Permalink
V4L/DVB (6921): include/media/v4l2-i2c-drv.h must #include <media/v4l…
Browse files Browse the repository at this point in the history
…2-common.h>

Fix the following compiler error:

v4l2-i2c-drv.h:72: error: implicit declaration of function 'v4l2_i2c_attach'

Also, prevent multiple inclusions of v4l2-i2c-drv.h

Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
  • Loading branch information
Michael Krufky authored and Mauro Carvalho Chehab committed Jan 25, 2008
1 parent 67d52e2 commit 8574ac6
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions include/media/v4l2-i2c-drv.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

#ifndef __V4L2_I2C_DRV_H__
#define __V4L2_I2C_DRV_H__

#include <media/v4l2-common.h>

struct v4l2_i2c_driver_data {
const char * const name;
int driverid;
Expand Down Expand Up @@ -59,3 +64,5 @@ static void __exit v4l2_i2c_drv_cleanup(void)

module_init(v4l2_i2c_drv_init);
module_exit(v4l2_i2c_drv_cleanup);

#endif /* __V4L2_I2C_DRV_H__ */

0 comments on commit 8574ac6

Please sign in to comment.