mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-30 08:02:30 +00:00
79622f372b
Move driver-private definitions out of the i2c-pxa.h platform data header file into the driver itself. Nothing outside of the driver makes use of these constants. Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk> Signed-off-by: Wolfram Sang <wsa@kernel.org>
18 lines
354 B
C
18 lines
354 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* i2c_pxa.h
|
|
*
|
|
* Copyright (C) 2002 Intrinsyc Software Inc.
|
|
*/
|
|
#ifndef _I2C_PXA_H_
|
|
#define _I2C_PXA_H_
|
|
|
|
struct i2c_pxa_platform_data {
|
|
unsigned int class;
|
|
unsigned int use_pio :1;
|
|
unsigned int fast_mode :1;
|
|
unsigned int high_mode:1;
|
|
unsigned char master_code;
|
|
unsigned long rate;
|
|
};
|
|
#endif
|