public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] One bug fix for FPGA
@ 2016-11-17  1:54 Alan Tull
  2016-11-17  1:54 ` [PATCH 1/1] ARM: socfpga: checking the wrong variable Alan Tull
  2016-11-17  7:14 ` [PATCH 0/1] One bug fix for FPGA Greg Kroah-Hartman
  0 siblings, 2 replies; 3+ messages in thread
From: Alan Tull @ 2016-11-17  1:54 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: linux-kernel, Moritz Fischer, Dinh Nguyen, Dan Carpenter,
	kernel-janitors, delicious.quinoa, Alan Tull

Hi Greg,

Can you take this patch?

Thanks,
Alan

Dan Carpenter (1):
  ARM: socfpga: checking the wrong variable

 drivers/fpga/altera-fpga2sdram.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
2.7.4

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 1/1] ARM: socfpga: checking the wrong variable
  2016-11-17  1:54 [PATCH 0/1] One bug fix for FPGA Alan Tull
@ 2016-11-17  1:54 ` Alan Tull
  2016-11-17  7:14 ` [PATCH 0/1] One bug fix for FPGA Greg Kroah-Hartman
  1 sibling, 0 replies; 3+ messages in thread
From: Alan Tull @ 2016-11-17  1:54 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: linux-kernel, Moritz Fischer, Dinh Nguyen, Dan Carpenter,
	kernel-janitors, delicious.quinoa

From: Dan Carpenter <dan.carpenter@oracle.com>

This is a cut and paste bug.  We had intended to check "sysmgr".

Fixes: e5f8efa5c8bf ("ARM: socfpga: fpga bridge driver support")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Moritz Fischer <moritz.fischer@ettus.com>
Acked-by: Alan Tull <atull@opensource.altera.com>
---
 drivers/fpga/altera-fpga2sdram.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/fpga/altera-fpga2sdram.c b/drivers/fpga/altera-fpga2sdram.c
index 7ab358e..d4eeb74 100644
--- a/drivers/fpga/altera-fpga2sdram.c
+++ b/drivers/fpga/altera-fpga2sdram.c
@@ -123,7 +123,7 @@ static int alt_fpga_bridge_probe(struct platform_device *pdev)
 	}
 
 	sysmgr = syscon_regmap_lookup_by_compatible("altr,sys-mgr");
-	if (IS_ERR(priv->sdrctl)) {
+	if (IS_ERR(sysmgr)) {
 		dev_err(dev, "regmap for altr,sys-mgr lookup failed.\n");
 		return PTR_ERR(sysmgr);
 	}
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 0/1] One bug fix for FPGA
  2016-11-17  1:54 [PATCH 0/1] One bug fix for FPGA Alan Tull
  2016-11-17  1:54 ` [PATCH 1/1] ARM: socfpga: checking the wrong variable Alan Tull
@ 2016-11-17  7:14 ` Greg Kroah-Hartman
  1 sibling, 0 replies; 3+ messages in thread
From: Greg Kroah-Hartman @ 2016-11-17  7:14 UTC (permalink / raw)
  To: Alan Tull
  Cc: linux-kernel, Moritz Fischer, Dinh Nguyen, Dan Carpenter,
	kernel-janitors, delicious.quinoa

On Wed, Nov 16, 2016 at 07:54:39PM -0600, Alan Tull wrote:
> Hi Greg,
> 
> Can you take this patch?

Yes, no need to send it 3 times :)

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-11-17  7:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-17  1:54 [PATCH 0/1] One bug fix for FPGA Alan Tull
2016-11-17  1:54 ` [PATCH 1/1] ARM: socfpga: checking the wrong variable Alan Tull
2016-11-17  7:14 ` [PATCH 0/1] One bug fix for FPGA Greg Kroah-Hartman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox