Home | History | Annotate | Line # | Download | only in i2c
i2c.h revision 1.1.1.1.6.2
      1 /*	$NetBSD: i2c.h,v 1.1.1.1.6.2 2017/08/28 17:53:02 skrll Exp $	*/
      2 
      3 /*
      4  * This header provides constants for I2C bindings
      5  *
      6  * Copyright (C) 2015 by Sang Engineering
      7  * Copyright (C) 2015 by Renesas Electronics Corporation
      8  *
      9  * Wolfram Sang <wsa (at) sang-engineering.com>
     10  *
     11  * GPLv2 only
     12  */
     13 
     14 #ifndef _DT_BINDINGS_I2C_I2C_H
     15 #define _DT_BINDINGS_I2C_I2C_H
     16 
     17 #define I2C_TEN_BIT_ADDRESS	(1 << 31)
     18 #define I2C_OWN_SLAVE_ADDRESS	(1 << 30)
     19 
     20 #endif
     21