serial: pl01x: disable as per type of pl01x
pl010 & pl011 have different control register offsets, setting it as per the pl01x type. Signed-off-by: Vikas Manocha <vikas.manocha@st.com> Acked-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
d2ca9fd2cd
commit
f7e517b4eb
@ -82,13 +82,14 @@ static int pl01x_generic_serial_init(struct pl01x_regs *regs,
|
||||
}
|
||||
#endif
|
||||
|
||||
/* First, disable everything */
|
||||
writel(0, ®s->pl010_cr);
|
||||
|
||||
switch (type) {
|
||||
case TYPE_PL010:
|
||||
/* disable everything */
|
||||
writel(0, ®s->pl010_cr);
|
||||
break;
|
||||
case TYPE_PL011:
|
||||
/* disable everything */
|
||||
writel(0, ®s->pl011_cr);
|
||||
break;
|
||||
default:
|
||||
return -EINVAL;
|
||||
|
Loading…
Reference in New Issue
Block a user