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