aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/arm/mach-orion5x/ts78xx-setup.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/arch/arm/mach-orion5x/ts78xx-setup.c b/arch/arm/mach-orion5x/ts78xx-setup.c
index f4ff53c9fb39..1cac714e982d 100644
--- a/arch/arm/mach-orion5x/ts78xx-setup.c
+++ b/arch/arm/mach-orion5x/ts78xx-setup.c
@@ -399,9 +399,11 @@ static void ts78xx_fpga_supports(void)
399 ts78xx_fpga.supports.ts_rng.present = 1; 399 ts78xx_fpga.supports.ts_rng.present = 1;
400 break; 400 break;
401 default: 401 default:
402 ts78xx_fpga.supports.ts_rtc.present = 0; 402 printk(KERN_WARNING "Unrecognized TS-78XX FPGA ID 0x%02x",
403 ts78xx_fpga.supports.ts_nand.present = 0; 403 ts78xx_fpga.id);
404 ts78xx_fpga.supports.ts_rng.present = 0; 404 ts78xx_fpga.supports.ts_rtc.present = 1;
405 ts78xx_fpga.supports.ts_nand.present = 1;
406 ts78xx_fpga.supports.ts_rng.present = 1;
405 } 407 }
406} 408}
407 409