Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1383076

[PATCH] mcb: Fixed bar number assignment for the gdd

From Andreas Werner <andreas.werner@men.de>
Newsgroups linux.kernel
Subject [PATCH] mcb: Fixed bar number assignment for the gdd
Date 2016-04-20 08:40 +0200
Message-ID <rpTXQ-3o7-7@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


The bar number is found in reg2 within the gdd. Therefore
we need to change the assigment from reg1 to reg2 which
is the correct location.

Signed-off-by: Andreas Werner <andreas.werner@men.de>
---
 drivers/mcb/mcb-parse.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mcb/mcb-parse.c b/drivers/mcb/mcb-parse.c
index 0049269..b0155b0 100644
--- a/drivers/mcb/mcb-parse.c
+++ b/drivers/mcb/mcb-parse.c
@@ -57,7 +57,7 @@ static int chameleon_parse_gdd(struct mcb_bus *bus,
 	mdev->id = GDD_DEV(reg1);
 	mdev->rev = GDD_REV(reg1);
 	mdev->var = GDD_VAR(reg1);
-	mdev->bar = GDD_BAR(reg1);
+	mdev->bar = GDD_BAR(reg2);
 	mdev->group = GDD_GRP(reg2);
 	mdev->inst = GDD_INS(reg2);
 
-- 
2.6.2

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH] mcb: Fixed bar number assignment for the gdd Andreas Werner <andreas.werner@men.de> - 2016-04-20 08:40 +0200
  Re: [PATCH] mcb: Fixed bar number assignment for the gdd Johannes Thumshirn <jthmshirn@suse.de> - 2016-04-20 11:00 +0200

csiph-web