cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

i2c-imx.h (420B)


      1/* SPDX-License-Identifier: GPL-2.0-only */
      2/*
      3 * i2c.h - i.MX I2C driver header file
      4 *
      5 * Copyright (c) 2008, Darius Augulis <augulis.darius@gmail.com>
      6 */
      7
      8#ifndef __ASM_ARCH_I2C_H_
      9#define __ASM_ARCH_I2C_H_
     10
     11/**
     12 * struct imxi2c_platform_data - structure of platform data for MXC I2C driver
     13 * @bitrate:	Bus speed measured in Hz
     14 *
     15 **/
     16struct imxi2c_platform_data {
     17	u32 bitrate;
     18};
     19
     20#endif /* __ASM_ARCH_I2C_H_ */