Add support for NXP layerscape ls1043ardb 64b/32b Dev board. LS1043a is an SoC with 4x64-bit up to 1.6 GHz ARMv8 A53 cores. ls1043ardb support features as: 2GB DDR4, 128MB NOR/512MB NAND, USB3.0, eSDHC, I2C, GPIO, PCIe/Mini-PCIe, 6x1G/1x10G network port, etc. 64b/32b ls1043ardb target is using 4.4 kernel, and rcw/u-boot/fman images from NXP QorIQ SDK release. All of 4.4 kernel patches porting from SDK release or upstream. QorIQ SDK ISOs can be downloaded from this location: http://www.nxp.com/products/software-and-tools/run-time-software/linux-sdk/linux-sdk-for-qoriq-processors:SDKLINUX Signed-off-by: Yutang Jiang <yutang.jiang@nxp.com>
		
			
				
	
	
		
			25 lines
		
	
	
		
			883 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			883 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
From ae1f7ae8bbacbdbf9df3977449f97d1432ff1957 Mon Sep 17 00:00:00 2001
 | 
						|
From: Raghav Dogra <raghav@freescale.com>
 | 
						|
Date: Wed, 16 Dec 2015 16:11:31 +0530
 | 
						|
Subject: [PATCH 43/70] driver/memory: Removal of deprecated NO_IRQ
 | 
						|
 | 
						|
Replacing the NO_IRQ macro with 0. If there is no interrupt,
 | 
						|
returned value will be 0 regardless of what NO_IRQ is defined.
 | 
						|
 | 
						|
Signed-off-by: Raghav Dogra <raghav@freescale.com>
 | 
						|
---
 | 
						|
 drivers/memory/fsl_ifc.c |    2 +-
 | 
						|
 1 file changed, 1 insertion(+), 1 deletion(-)
 | 
						|
 | 
						|
--- a/drivers/memory/fsl_ifc.c
 | 
						|
+++ b/drivers/memory/fsl_ifc.c
 | 
						|
@@ -260,7 +260,7 @@ static int fsl_ifc_ctrl_probe(struct pla
 | 
						|
 
 | 
						|
 	/* get the Controller level irq */
 | 
						|
 	fsl_ifc_ctrl_dev->irq = irq_of_parse_and_map(dev->dev.of_node, 0);
 | 
						|
-	if (fsl_ifc_ctrl_dev->irq == NO_IRQ) {
 | 
						|
+	if (fsl_ifc_ctrl_dev->irq == 0) {
 | 
						|
 		dev_err(&dev->dev, "failed to get irq resource "
 | 
						|
 							"for IFC\n");
 | 
						|
 		ret = -ENODEV;
 |