1 /* $NetBSD: i2c.h,v 1.1.1.1 2017/06/15 20:14:23 jmcneill 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@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