diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2013-01-27 17:30:29 +0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2013-01-28 23:48:53 +0400 |
commit | 6b112decb777884e37d308554e22e0a4f5cdf44f (patch) | |
tree | 27ff9566f1a4dd2b89dbc5cf727134218b1974c0 /drivers/bcma | |
parent | 0e33e48ddc4402e890aaeeeacc95f730bf522098 (diff) | |
download | linux-6b112decb777884e37d308554e22e0a4f5cdf44f.tar.xz |
bcma: fix NAND flash validation
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/bcma')
-rw-r--r-- | drivers/bcma/driver_chipcommon_nflash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/bcma/driver_chipcommon_nflash.c b/drivers/bcma/driver_chipcommon_nflash.c index dbda91e4dff5..1f0b83e18f68 100644 --- a/drivers/bcma/driver_chipcommon_nflash.c +++ b/drivers/bcma/driver_chipcommon_nflash.c @@ -21,7 +21,7 @@ int bcma_nflash_init(struct bcma_drv_cc *cc) struct bcma_bus *bus = cc->core->bus; if (bus->chipinfo.id != BCMA_CHIP_ID_BCM4706 && - cc->core->id.rev != 0x38) { + cc->core->id.rev != 38) { bcma_err(bus, "NAND flash on unsupported board!\n"); return -ENOTSUPP; } |