mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
mtd: mpc5121_nfc: Changed SVR check to allow MPC5123.
The revision in SVR for MPC5123 is 3. The NFC is the same as MPC5121 revision 2. Signed-off-by: Steve Deiters <SteveDeiters@basler.com> Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
This commit is contained in:
parent
29da3380de
commit
6f1f3d0ab5
1 changed files with 2 additions and 2 deletions
|
@ -666,10 +666,10 @@ static int __devinit mpc5121_nfc_probe(struct of_device *op,
|
|||
|
||||
/*
|
||||
* Check SoC revision. This driver supports only NFC
|
||||
* in MPC5121 revision 2.
|
||||
* in MPC5121 revision 2 and MPC5123 revision 3.
|
||||
*/
|
||||
rev = (mfspr(SPRN_SVR) >> 4) & 0xF;
|
||||
if (rev != 2) {
|
||||
if ((rev != 2) && (rev != 3)) {
|
||||
dev_err(dev, "SoC revision %u is not supported!\n", rev);
|
||||
return -ENXIO;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue