diff options
Diffstat (limited to 'include/asm-generic/global_data.h')
| -rw-r--r-- | include/asm-generic/global_data.h | 21 | 
1 files changed, 4 insertions, 17 deletions
| diff --git a/include/asm-generic/global_data.h b/include/asm-generic/global_data.h index 8cfc3fa77..77e06fb4f 100644 --- a/include/asm-generic/global_data.h +++ b/include/asm-generic/global_data.h @@ -3,23 +3,7 @@   * (C) Copyright 2002-2010   * Wolfgang Denk, DENX Software Engineering, wd@denx.de.   * - * See file CREDITS for list of people who contributed to this - * project. - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation; either version 2 of - * the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA + * SPDX-License-Identifier:	GPL-2.0+   */  #ifndef __ASM_GENERIC_GBL_DATA_H @@ -85,6 +69,9 @@ typedef struct global_data {  #ifdef CONFIG_TRACE  	void		*trace_buff;	/* The trace buffer */  #endif +#if defined(CONFIG_SYS_I2C) +	int		cur_i2c_bus;	/* current used i2c bus */ +#endif  	struct arch_global_data arch;	/* architecture-specific data */  } gd_t;  #endif |