diff options
| author | Wolfgang Denk <wd@denx.de> | 2013-10-04 17:43:24 +0200 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-10-14 16:06:54 -0400 | 
| commit | 93e1459641e758d2b096d3f1b39414a39bb314f8 (patch) | |
| tree | 3780156a164d3924a2412354872203e4b46f8592 /arch/powerpc/cpu/mpc83xx/cpu_init.c | |
| parent | 3765b3e7bd0f8e46914d417f29cbcb0c72b1acf7 (diff) | |
| download | olio-uboot-2014.01-93e1459641e758d2b096d3f1b39414a39bb314f8.tar.xz olio-uboot-2014.01-93e1459641e758d2b096d3f1b39414a39bb314f8.zip | |
Coding Style cleanup: replace leading SPACEs by TABs
Signed-off-by: Wolfgang Denk <wd@denx.de>
[trini: Drop changes for PEP 4 following python tools]
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'arch/powerpc/cpu/mpc83xx/cpu_init.c')
| -rw-r--r-- | arch/powerpc/cpu/mpc83xx/cpu_init.c | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/arch/powerpc/cpu/mpc83xx/cpu_init.c b/arch/powerpc/cpu/mpc83xx/cpu_init.c index d568f889d..0e9ddb8e2 100644 --- a/arch/powerpc/cpu/mpc83xx/cpu_init.c +++ b/arch/powerpc/cpu/mpc83xx/cpu_init.c @@ -425,15 +425,15 @@ static int print_83xx_arb_event(int force)  	};  	int etype = (gd->arch.arbiter_event_attributes & AEATR_EVENT) -	            >> AEATR_EVENT_SHIFT; +		    >> AEATR_EVENT_SHIFT;  	int mstr_id = (gd->arch.arbiter_event_attributes & AEATR_MSTR_ID) -	              >> AEATR_MSTR_ID_SHIFT; +		      >> AEATR_MSTR_ID_SHIFT;  	int tbst = (gd->arch.arbiter_event_attributes & AEATR_TBST) -	           >> AEATR_TBST_SHIFT; +		   >> AEATR_TBST_SHIFT;  	int tsize = (gd->arch.arbiter_event_attributes & AEATR_TSIZE) -	            >> AEATR_TSIZE_SHIFT; +		    >> AEATR_TSIZE_SHIFT;  	int ttype = (gd->arch.arbiter_event_attributes & AEATR_TTYPE) -	            >> AEATR_TTYPE_SHIFT; +		    >> AEATR_TTYPE_SHIFT;  	if (!force && !gd->arch.arbiter_event_address)  		return 0; |