Skip to content
Snippets Groups Projects
Commit d2646554 authored by Tony Li's avatar Tony Li Committed by Kim Phillips
Browse files

mpc83xx: pq-mds-pib.c typo error


Correct to val8 from val.

Signed-off-by: default avatarTony Li <tony.li@freescale.com>
Signed-off-by: default avatarKim Phillips <kim.phillips@freescale.com>
parent f147dd15
No related branches found
No related tags found
No related merge requests found
......@@ -79,19 +79,19 @@ int pib_init(void)
printf("QOC3 ATM card on PMC0\n");
#elif defined(CONFIG_MPC832XEMDS)
val = 0;
i2c_write(0x26, 0x7, 1, &val, 1);
val = 0xf7;
i2c_write(0x26, 0x3, 1, &val, 1);
val = 0;
i2c_write(0x21, 0x6, 1, &val, 1);
i2c_write(0x21, 0x7, 1, &val, 1);
val = 0xdf;
i2c_write(0x21, 0x2, 1, &val, 1);
val = 0xef;
i2c_write(0x21, 0x3, 1, &val, 1);
val8 = 0;
i2c_write(0x26, 0x7, 1, &val8, 1);
val8 = 0xf7;
i2c_write(0x26, 0x3, 1, &val8, 1);
val8 = 0;
i2c_write(0x21, 0x6, 1, &val8, 1);
i2c_write(0x21, 0x7, 1, &val8, 1);
val8 = 0xdf;
i2c_write(0x21, 0x2, 1, &val8, 1);
val8 = 0xef;
i2c_write(0x21, 0x3, 1, &val8, 1);
eieio();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment