linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* drivers/mfd/syscon.c:89:2: error: implicit declaration of function 'iounmap'
@ 2016-04-17  5:05 kbuild test robot
  0 siblings, 0 replies; 7+ messages in thread
From: kbuild test robot @ 2016-04-17  5:05 UTC (permalink / raw)
  To: Rob Herring; +Cc: kbuild-all, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 2649 bytes --]

Hi Rob,

FYI, the error/warning still remains.

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   b9f5dba225aede4518ab0a7374c2dc38c7c049ce
commit: 0166dc11be911213e0b1b764488c671be4c48cf3 of: make CONFIG_OF user selectable
date:   11 months ago
config: um-allmodconfig (attached as .config)
reproduce:
        git checkout 0166dc11be911213e0b1b764488c671be4c48cf3
        # save the attached .config to linux build tree
        make ARCH=um 

All errors (new ones prefixed by >>):

   drivers/mfd/syscon.c: In function 'of_syscon_register':
>> drivers/mfd/syscon.c:89:2: error: implicit declaration of function 'iounmap' [-Werror=implicit-function-declaration]
     iounmap(base);
     ^
   cc1: some warnings being treated as errors

vim +/iounmap +89 drivers/mfd/syscon.c

bdb0066d Pankaj Dubey 2014-09-30  73  	if (IS_ERR(regmap)) {
bdb0066d Pankaj Dubey 2014-09-30  74  		pr_err("regmap init failed\n");
bdb0066d Pankaj Dubey 2014-09-30  75  		ret = PTR_ERR(regmap);
bdb0066d Pankaj Dubey 2014-09-30  76  		goto err_regmap;
bdb0066d Pankaj Dubey 2014-09-30  77  	}
bdb0066d Pankaj Dubey 2014-09-30  78  
bdb0066d Pankaj Dubey 2014-09-30  79  	syscon->regmap = regmap;
bdb0066d Pankaj Dubey 2014-09-30  80  	syscon->np = np;
bdb0066d Pankaj Dubey 2014-09-30  81  
bdb0066d Pankaj Dubey 2014-09-30  82  	spin_lock(&syscon_list_slock);
bdb0066d Pankaj Dubey 2014-09-30  83  	list_add_tail(&syscon->list, &syscon_list);
bdb0066d Pankaj Dubey 2014-09-30  84  	spin_unlock(&syscon_list_slock);
87d68730 Dong Aisheng 2012-09-05  85  
bdb0066d Pankaj Dubey 2014-09-30  86  	return syscon;
bdb0066d Pankaj Dubey 2014-09-30  87  
bdb0066d Pankaj Dubey 2014-09-30  88  err_regmap:
bdb0066d Pankaj Dubey 2014-09-30 @89  	iounmap(base);
bdb0066d Pankaj Dubey 2014-09-30  90  err_map:
bdb0066d Pankaj Dubey 2014-09-30  91  	kfree(syscon);
bdb0066d Pankaj Dubey 2014-09-30  92  	return ERR_PTR(ret);
87d68730 Dong Aisheng 2012-09-05  93  }
87d68730 Dong Aisheng 2012-09-05  94  
87d68730 Dong Aisheng 2012-09-05  95  struct regmap *syscon_node_to_regmap(struct device_node *np)
87d68730 Dong Aisheng 2012-09-05  96  {
bdb0066d Pankaj Dubey 2014-09-30  97  	struct syscon *entry, *syscon = NULL;

:::::: The code at line 89 was first introduced by commit
:::::: bdb0066df96e74a4002125467ebe459feff1ebef mfd: syscon: Decouple syscon interface from platform devices

:::::: TO: Pankaj Dubey <pankaj.dubey@samsung.com>
:::::: CC: Lee Jones <lee.jones@linaro.org>

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/octet-stream, Size: 16085 bytes --]

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

* drivers/mfd/syscon.c:89:2: error: implicit declaration of function 'iounmap'
@ 2016-04-03  3:58 kbuild test robot
  0 siblings, 0 replies; 7+ messages in thread
From: kbuild test robot @ 2016-04-03  3:58 UTC (permalink / raw)
  To: Rob Herring; +Cc: kbuild-all, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 2649 bytes --]

Hi Rob,

FYI, the error/warning still remains.

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   f7eeb8a87c033d126ff6b8c35405ba5dc4e55754
commit: 0166dc11be911213e0b1b764488c671be4c48cf3 of: make CONFIG_OF user selectable
date:   10 months ago
config: um-allyesconfig (attached as .config)
reproduce:
        git checkout 0166dc11be911213e0b1b764488c671be4c48cf3
        # save the attached .config to linux build tree
        make ARCH=um 

All errors (new ones prefixed by >>):

   drivers/mfd/syscon.c: In function 'of_syscon_register':
>> drivers/mfd/syscon.c:89:2: error: implicit declaration of function 'iounmap' [-Werror=implicit-function-declaration]
     iounmap(base);
     ^
   cc1: some warnings being treated as errors

vim +/iounmap +89 drivers/mfd/syscon.c

bdb0066d Pankaj Dubey 2014-09-30  73  	if (IS_ERR(regmap)) {
bdb0066d Pankaj Dubey 2014-09-30  74  		pr_err("regmap init failed\n");
bdb0066d Pankaj Dubey 2014-09-30  75  		ret = PTR_ERR(regmap);
bdb0066d Pankaj Dubey 2014-09-30  76  		goto err_regmap;
bdb0066d Pankaj Dubey 2014-09-30  77  	}
bdb0066d Pankaj Dubey 2014-09-30  78  
bdb0066d Pankaj Dubey 2014-09-30  79  	syscon->regmap = regmap;
bdb0066d Pankaj Dubey 2014-09-30  80  	syscon->np = np;
bdb0066d Pankaj Dubey 2014-09-30  81  
bdb0066d Pankaj Dubey 2014-09-30  82  	spin_lock(&syscon_list_slock);
bdb0066d Pankaj Dubey 2014-09-30  83  	list_add_tail(&syscon->list, &syscon_list);
bdb0066d Pankaj Dubey 2014-09-30  84  	spin_unlock(&syscon_list_slock);
87d68730 Dong Aisheng 2012-09-05  85  
bdb0066d Pankaj Dubey 2014-09-30  86  	return syscon;
bdb0066d Pankaj Dubey 2014-09-30  87  
bdb0066d Pankaj Dubey 2014-09-30  88  err_regmap:
bdb0066d Pankaj Dubey 2014-09-30 @89  	iounmap(base);
bdb0066d Pankaj Dubey 2014-09-30  90  err_map:
bdb0066d Pankaj Dubey 2014-09-30  91  	kfree(syscon);
bdb0066d Pankaj Dubey 2014-09-30  92  	return ERR_PTR(ret);
87d68730 Dong Aisheng 2012-09-05  93  }
87d68730 Dong Aisheng 2012-09-05  94  
87d68730 Dong Aisheng 2012-09-05  95  struct regmap *syscon_node_to_regmap(struct device_node *np)
87d68730 Dong Aisheng 2012-09-05  96  {
bdb0066d Pankaj Dubey 2014-09-30  97  	struct syscon *entry, *syscon = NULL;

:::::: The code at line 89 was first introduced by commit
:::::: bdb0066df96e74a4002125467ebe459feff1ebef mfd: syscon: Decouple syscon interface from platform devices

:::::: TO: Pankaj Dubey <pankaj.dubey@samsung.com>
:::::: CC: Lee Jones <lee.jones@linaro.org>

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/octet-stream, Size: 15947 bytes --]

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

* drivers/mfd/syscon.c:89:2: error: implicit declaration of function 'iounmap'
@ 2016-03-20  2:07 kbuild test robot
  0 siblings, 0 replies; 7+ messages in thread
From: kbuild test robot @ 2016-03-20  2:07 UTC (permalink / raw)
  To: Rob Herring; +Cc: kbuild-all, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 2649 bytes --]

Hi Rob,

FYI, the error/warning still remains.

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   de06dbfa7861c9019eedefc0c356ba86e5098f1b
commit: 0166dc11be911213e0b1b764488c671be4c48cf3 of: make CONFIG_OF user selectable
date:   10 months ago
config: um-allyesconfig (attached as .config)
reproduce:
        git checkout 0166dc11be911213e0b1b764488c671be4c48cf3
        # save the attached .config to linux build tree
        make ARCH=um 

All errors (new ones prefixed by >>):

   drivers/mfd/syscon.c: In function 'of_syscon_register':
>> drivers/mfd/syscon.c:89:2: error: implicit declaration of function 'iounmap' [-Werror=implicit-function-declaration]
     iounmap(base);
     ^
   cc1: some warnings being treated as errors

vim +/iounmap +89 drivers/mfd/syscon.c

bdb0066d Pankaj Dubey 2014-09-30  73  	if (IS_ERR(regmap)) {
bdb0066d Pankaj Dubey 2014-09-30  74  		pr_err("regmap init failed\n");
bdb0066d Pankaj Dubey 2014-09-30  75  		ret = PTR_ERR(regmap);
bdb0066d Pankaj Dubey 2014-09-30  76  		goto err_regmap;
bdb0066d Pankaj Dubey 2014-09-30  77  	}
bdb0066d Pankaj Dubey 2014-09-30  78  
bdb0066d Pankaj Dubey 2014-09-30  79  	syscon->regmap = regmap;
bdb0066d Pankaj Dubey 2014-09-30  80  	syscon->np = np;
bdb0066d Pankaj Dubey 2014-09-30  81  
bdb0066d Pankaj Dubey 2014-09-30  82  	spin_lock(&syscon_list_slock);
bdb0066d Pankaj Dubey 2014-09-30  83  	list_add_tail(&syscon->list, &syscon_list);
bdb0066d Pankaj Dubey 2014-09-30  84  	spin_unlock(&syscon_list_slock);
87d68730 Dong Aisheng 2012-09-05  85  
bdb0066d Pankaj Dubey 2014-09-30  86  	return syscon;
bdb0066d Pankaj Dubey 2014-09-30  87  
bdb0066d Pankaj Dubey 2014-09-30  88  err_regmap:
bdb0066d Pankaj Dubey 2014-09-30 @89  	iounmap(base);
bdb0066d Pankaj Dubey 2014-09-30  90  err_map:
bdb0066d Pankaj Dubey 2014-09-30  91  	kfree(syscon);
bdb0066d Pankaj Dubey 2014-09-30  92  	return ERR_PTR(ret);
87d68730 Dong Aisheng 2012-09-05  93  }
87d68730 Dong Aisheng 2012-09-05  94  
87d68730 Dong Aisheng 2012-09-05  95  struct regmap *syscon_node_to_regmap(struct device_node *np)
87d68730 Dong Aisheng 2012-09-05  96  {
bdb0066d Pankaj Dubey 2014-09-30  97  	struct syscon *entry, *syscon = NULL;

:::::: The code at line 89 was first introduced by commit
:::::: bdb0066df96e74a4002125467ebe459feff1ebef mfd: syscon: Decouple syscon interface from platform devices

:::::: TO: Pankaj Dubey <pankaj.dubey@samsung.com>
:::::: CC: Lee Jones <lee.jones@linaro.org>

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/octet-stream, Size: 15947 bytes --]

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

* drivers/mfd/syscon.c:89:2: error: implicit declaration of function 'iounmap'
@ 2016-03-13  5:56 kbuild test robot
  0 siblings, 0 replies; 7+ messages in thread
From: kbuild test robot @ 2016-03-13  5:56 UTC (permalink / raw)
  To: Rob Herring; +Cc: kbuild-all, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 2648 bytes --]

Hi Rob,

FYI, the error/warning still remains.

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   f414ca64be4b36c30deb5b5fa25c5a8ff42ea56b
commit: 0166dc11be911213e0b1b764488c671be4c48cf3 of: make CONFIG_OF user selectable
date:   9 months ago
config: um-allyesconfig (attached as .config)
reproduce:
        git checkout 0166dc11be911213e0b1b764488c671be4c48cf3
        # save the attached .config to linux build tree
        make ARCH=um 

All errors (new ones prefixed by >>):

   drivers/mfd/syscon.c: In function 'of_syscon_register':
>> drivers/mfd/syscon.c:89:2: error: implicit declaration of function 'iounmap' [-Werror=implicit-function-declaration]
     iounmap(base);
     ^
   cc1: some warnings being treated as errors

vim +/iounmap +89 drivers/mfd/syscon.c

bdb0066d Pankaj Dubey 2014-09-30  73  	if (IS_ERR(regmap)) {
bdb0066d Pankaj Dubey 2014-09-30  74  		pr_err("regmap init failed\n");
bdb0066d Pankaj Dubey 2014-09-30  75  		ret = PTR_ERR(regmap);
bdb0066d Pankaj Dubey 2014-09-30  76  		goto err_regmap;
bdb0066d Pankaj Dubey 2014-09-30  77  	}
bdb0066d Pankaj Dubey 2014-09-30  78  
bdb0066d Pankaj Dubey 2014-09-30  79  	syscon->regmap = regmap;
bdb0066d Pankaj Dubey 2014-09-30  80  	syscon->np = np;
bdb0066d Pankaj Dubey 2014-09-30  81  
bdb0066d Pankaj Dubey 2014-09-30  82  	spin_lock(&syscon_list_slock);
bdb0066d Pankaj Dubey 2014-09-30  83  	list_add_tail(&syscon->list, &syscon_list);
bdb0066d Pankaj Dubey 2014-09-30  84  	spin_unlock(&syscon_list_slock);
87d68730 Dong Aisheng 2012-09-05  85  
bdb0066d Pankaj Dubey 2014-09-30  86  	return syscon;
bdb0066d Pankaj Dubey 2014-09-30  87  
bdb0066d Pankaj Dubey 2014-09-30  88  err_regmap:
bdb0066d Pankaj Dubey 2014-09-30 @89  	iounmap(base);
bdb0066d Pankaj Dubey 2014-09-30  90  err_map:
bdb0066d Pankaj Dubey 2014-09-30  91  	kfree(syscon);
bdb0066d Pankaj Dubey 2014-09-30  92  	return ERR_PTR(ret);
87d68730 Dong Aisheng 2012-09-05  93  }
87d68730 Dong Aisheng 2012-09-05  94  
87d68730 Dong Aisheng 2012-09-05  95  struct regmap *syscon_node_to_regmap(struct device_node *np)
87d68730 Dong Aisheng 2012-09-05  96  {
bdb0066d Pankaj Dubey 2014-09-30  97  	struct syscon *entry, *syscon = NULL;

:::::: The code at line 89 was first introduced by commit
:::::: bdb0066df96e74a4002125467ebe459feff1ebef mfd: syscon: Decouple syscon interface from platform devices

:::::: TO: Pankaj Dubey <pankaj.dubey@samsung.com>
:::::: CC: Lee Jones <lee.jones@linaro.org>

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/octet-stream, Size: 15947 bytes --]

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

* Re: drivers/mfd/syscon.c:89:2: error: implicit declaration of function 'iounmap'
  2016-03-06  0:32 kbuild test robot
@ 2016-03-06 13:33 ` Krzysztof Kozlowski
  0 siblings, 0 replies; 7+ messages in thread
From: Krzysztof Kozlowski @ 2016-03-06 13:33 UTC (permalink / raw)
  To: kbuild test robot
  Cc: Rob Herring, kbuild-all, linux-kernel, Krzysztof Kozlowski

2016-03-06 9:32 GMT+09:00 kbuild test robot <fengguang.wu@intel.com>:
> Hi Rob,
>
> FYI, the error/warning still remains.
>
> tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
> head:   67944024c1cdd897e49a09b0d6af3ea38d1388ca
> commit: 0166dc11be911213e0b1b764488c671be4c48cf3 of: make CONFIG_OF user selectable
> date:   9 months ago
> config: um-allmodconfig (attached as .config)
> reproduce:
>         git checkout 0166dc11be911213e0b1b764488c671be4c48cf3
>         # save the attached .config to linux build tree
>         make ARCH=um

I cannot reproduce it on linux-next. I think it was fixed by
4f4bfe6bf116d98e336a08ee19ac5754ba0f9f4a ("power: reset: Fix
dependencies for !HAS_IOMEM archs") or by other patches fixing unmet
HAS_IOMEM dependencies,

Best regards,
Krzysztof

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

* drivers/mfd/syscon.c:89:2: error: implicit declaration of function 'iounmap'
@ 2016-03-06  0:32 kbuild test robot
  2016-03-06 13:33 ` Krzysztof Kozlowski
  0 siblings, 1 reply; 7+ messages in thread
From: kbuild test robot @ 2016-03-06  0:32 UTC (permalink / raw)
  To: Rob Herring; +Cc: kbuild-all, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 2648 bytes --]

Hi Rob,

FYI, the error/warning still remains.

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   67944024c1cdd897e49a09b0d6af3ea38d1388ca
commit: 0166dc11be911213e0b1b764488c671be4c48cf3 of: make CONFIG_OF user selectable
date:   9 months ago
config: um-allmodconfig (attached as .config)
reproduce:
        git checkout 0166dc11be911213e0b1b764488c671be4c48cf3
        # save the attached .config to linux build tree
        make ARCH=um 

All errors (new ones prefixed by >>):

   drivers/mfd/syscon.c: In function 'of_syscon_register':
>> drivers/mfd/syscon.c:89:2: error: implicit declaration of function 'iounmap' [-Werror=implicit-function-declaration]
     iounmap(base);
     ^
   cc1: some warnings being treated as errors

vim +/iounmap +89 drivers/mfd/syscon.c

bdb0066d Pankaj Dubey 2014-09-30  73  	if (IS_ERR(regmap)) {
bdb0066d Pankaj Dubey 2014-09-30  74  		pr_err("regmap init failed\n");
bdb0066d Pankaj Dubey 2014-09-30  75  		ret = PTR_ERR(regmap);
bdb0066d Pankaj Dubey 2014-09-30  76  		goto err_regmap;
bdb0066d Pankaj Dubey 2014-09-30  77  	}
bdb0066d Pankaj Dubey 2014-09-30  78  
bdb0066d Pankaj Dubey 2014-09-30  79  	syscon->regmap = regmap;
bdb0066d Pankaj Dubey 2014-09-30  80  	syscon->np = np;
bdb0066d Pankaj Dubey 2014-09-30  81  
bdb0066d Pankaj Dubey 2014-09-30  82  	spin_lock(&syscon_list_slock);
bdb0066d Pankaj Dubey 2014-09-30  83  	list_add_tail(&syscon->list, &syscon_list);
bdb0066d Pankaj Dubey 2014-09-30  84  	spin_unlock(&syscon_list_slock);
87d68730 Dong Aisheng 2012-09-05  85  
bdb0066d Pankaj Dubey 2014-09-30  86  	return syscon;
bdb0066d Pankaj Dubey 2014-09-30  87  
bdb0066d Pankaj Dubey 2014-09-30  88  err_regmap:
bdb0066d Pankaj Dubey 2014-09-30 @89  	iounmap(base);
bdb0066d Pankaj Dubey 2014-09-30  90  err_map:
bdb0066d Pankaj Dubey 2014-09-30  91  	kfree(syscon);
bdb0066d Pankaj Dubey 2014-09-30  92  	return ERR_PTR(ret);
87d68730 Dong Aisheng 2012-09-05  93  }
87d68730 Dong Aisheng 2012-09-05  94  
87d68730 Dong Aisheng 2012-09-05  95  struct regmap *syscon_node_to_regmap(struct device_node *np)
87d68730 Dong Aisheng 2012-09-05  96  {
bdb0066d Pankaj Dubey 2014-09-30  97  	struct syscon *entry, *syscon = NULL;

:::::: The code at line 89 was first introduced by commit
:::::: bdb0066df96e74a4002125467ebe459feff1ebef mfd: syscon: Decouple syscon interface from platform devices

:::::: TO: Pankaj Dubey <pankaj.dubey@samsung.com>
:::::: CC: Lee Jones <lee.jones@linaro.org>

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/octet-stream, Size: 16085 bytes --]

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

* drivers/mfd/syscon.c:89:2: error: implicit declaration of function 'iounmap'
@ 2016-02-28  0:23 kbuild test robot
  0 siblings, 0 replies; 7+ messages in thread
From: kbuild test robot @ 2016-02-28  0:23 UTC (permalink / raw)
  To: Rob Herring; +Cc: kbuild-all, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 2648 bytes --]

Hi Rob,

FYI, the error/warning still remains.

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   691429e13dfaf5b0994b07cc166db41bd608ee3d
commit: 0166dc11be911213e0b1b764488c671be4c48cf3 of: make CONFIG_OF user selectable
date:   9 months ago
config: um-allyesconfig (attached as .config)
reproduce:
        git checkout 0166dc11be911213e0b1b764488c671be4c48cf3
        # save the attached .config to linux build tree
        make ARCH=um 

All errors (new ones prefixed by >>):

   drivers/mfd/syscon.c: In function 'of_syscon_register':
>> drivers/mfd/syscon.c:89:2: error: implicit declaration of function 'iounmap' [-Werror=implicit-function-declaration]
     iounmap(base);
     ^
   cc1: some warnings being treated as errors

vim +/iounmap +89 drivers/mfd/syscon.c

bdb0066d Pankaj Dubey 2014-09-30  73  	if (IS_ERR(regmap)) {
bdb0066d Pankaj Dubey 2014-09-30  74  		pr_err("regmap init failed\n");
bdb0066d Pankaj Dubey 2014-09-30  75  		ret = PTR_ERR(regmap);
bdb0066d Pankaj Dubey 2014-09-30  76  		goto err_regmap;
bdb0066d Pankaj Dubey 2014-09-30  77  	}
bdb0066d Pankaj Dubey 2014-09-30  78  
bdb0066d Pankaj Dubey 2014-09-30  79  	syscon->regmap = regmap;
bdb0066d Pankaj Dubey 2014-09-30  80  	syscon->np = np;
bdb0066d Pankaj Dubey 2014-09-30  81  
bdb0066d Pankaj Dubey 2014-09-30  82  	spin_lock(&syscon_list_slock);
bdb0066d Pankaj Dubey 2014-09-30  83  	list_add_tail(&syscon->list, &syscon_list);
bdb0066d Pankaj Dubey 2014-09-30  84  	spin_unlock(&syscon_list_slock);
87d68730 Dong Aisheng 2012-09-05  85  
bdb0066d Pankaj Dubey 2014-09-30  86  	return syscon;
bdb0066d Pankaj Dubey 2014-09-30  87  
bdb0066d Pankaj Dubey 2014-09-30  88  err_regmap:
bdb0066d Pankaj Dubey 2014-09-30 @89  	iounmap(base);
bdb0066d Pankaj Dubey 2014-09-30  90  err_map:
bdb0066d Pankaj Dubey 2014-09-30  91  	kfree(syscon);
bdb0066d Pankaj Dubey 2014-09-30  92  	return ERR_PTR(ret);
87d68730 Dong Aisheng 2012-09-05  93  }
87d68730 Dong Aisheng 2012-09-05  94  
87d68730 Dong Aisheng 2012-09-05  95  struct regmap *syscon_node_to_regmap(struct device_node *np)
87d68730 Dong Aisheng 2012-09-05  96  {
bdb0066d Pankaj Dubey 2014-09-30  97  	struct syscon *entry, *syscon = NULL;

:::::: The code at line 89 was first introduced by commit
:::::: bdb0066df96e74a4002125467ebe459feff1ebef mfd: syscon: Decouple syscon interface from platform devices

:::::: TO: Pankaj Dubey <pankaj.dubey@samsung.com>
:::::: CC: Lee Jones <lee.jones@linaro.org>

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/octet-stream, Size: 15947 bytes --]

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

end of thread, other threads:[~2016-04-17  5:06 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-17  5:05 drivers/mfd/syscon.c:89:2: error: implicit declaration of function 'iounmap' kbuild test robot
  -- strict thread matches above, loose matches on Subject: below --
2016-04-03  3:58 kbuild test robot
2016-03-20  2:07 kbuild test robot
2016-03-13  5:56 kbuild test robot
2016-03-06  0:32 kbuild test robot
2016-03-06 13:33 ` Krzysztof Kozlowski
2016-02-28  0:23 kbuild test robot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).