* [PATCH 0/2] stm/intel_th: Misc fixes
@ 2015-10-16 14:09 Alexander Shishkin
2015-10-16 14:09 ` [PATCH 1/2] stm class: Select configfs Alexander Shishkin
2015-10-16 14:09 ` [PATCH 2/2] intel_th: Check for NULL instead of ERR_PTR Alexander Shishkin
0 siblings, 2 replies; 3+ messages in thread
From: Alexander Shishkin @ 2015-10-16 14:09 UTC (permalink / raw)
To: Greg KH; +Cc: linux-kernel, Alexander Shishkin
Hi Greg,
Here are two small fixes for issues that robots found in my latest
patches in linux-next.
Alexander Shishkin (1):
stm class: Select configfs
Dan Carpenter (1):
intel_th: Check for NULL instead of ERR_PTR
drivers/hwtracing/intel_th/gth.c | 4 ++--
drivers/hwtracing/intel_th/msu.c | 4 ++--
drivers/hwtracing/intel_th/pti.c | 4 ++--
drivers/hwtracing/intel_th/sth.c | 8 ++++----
drivers/hwtracing/stm/Kconfig | 1 +
5 files changed, 11 insertions(+), 10 deletions(-)
--
2.6.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 1/2] stm class: Select configfs
2015-10-16 14:09 [PATCH 0/2] stm/intel_th: Misc fixes Alexander Shishkin
@ 2015-10-16 14:09 ` Alexander Shishkin
2015-10-16 14:09 ` [PATCH 2/2] intel_th: Check for NULL instead of ERR_PTR Alexander Shishkin
1 sibling, 0 replies; 3+ messages in thread
From: Alexander Shishkin @ 2015-10-16 14:09 UTC (permalink / raw)
To: Greg KH; +Cc: linux-kernel, Alexander Shishkin
STM policy handling is basically configfs, I honestly don't know how we
ended up without a Kconfig dependency, but thanks to randconfig testing,
it's now caught.
Reported-by: Jim Davis <jim.epost@gmail.com>
Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com>
---
drivers/hwtracing/stm/Kconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/hwtracing/stm/Kconfig b/drivers/hwtracing/stm/Kconfig
index 5a59a28cc3..83e9f591a5 100644
--- a/drivers/hwtracing/stm/Kconfig
+++ b/drivers/hwtracing/stm/Kconfig
@@ -1,5 +1,6 @@
config STM
tristate "System Trace Module devices"
+ select CONFIGFS_FS
help
A System Trace Module (STM) is a device exporting data in System
Trace Protocol (STP) format as defined by MIPI STP standards.
--
2.6.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 2/2] intel_th: Check for NULL instead of ERR_PTR
2015-10-16 14:09 [PATCH 0/2] stm/intel_th: Misc fixes Alexander Shishkin
2015-10-16 14:09 ` [PATCH 1/2] stm class: Select configfs Alexander Shishkin
@ 2015-10-16 14:09 ` Alexander Shishkin
1 sibling, 0 replies; 3+ messages in thread
From: Alexander Shishkin @ 2015-10-16 14:09 UTC (permalink / raw)
To: Greg KH; +Cc: linux-kernel, Dan Carpenter, Alexander Shishkin
From: Dan Carpenter <dan.carpenter@oracle.com>
devm_ioremap() returns NULL on error, it doesn't return an ERR_PTR,
which is what the current code does. This patch corrects these
checks.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com>
---
drivers/hwtracing/intel_th/gth.c | 4 ++--
drivers/hwtracing/intel_th/msu.c | 4 ++--
drivers/hwtracing/intel_th/pti.c | 4 ++--
drivers/hwtracing/intel_th/sth.c | 8 ++++----
4 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/drivers/hwtracing/intel_th/gth.c b/drivers/hwtracing/intel_th/gth.c
index 673d272ee4..2dc5378ccd 100644
--- a/drivers/hwtracing/intel_th/gth.c
+++ b/drivers/hwtracing/intel_th/gth.c
@@ -635,8 +635,8 @@ static int intel_th_gth_probe(struct intel_th_device *thdev)
return -ENODEV;
base = devm_ioremap(dev, res->start, resource_size(res));
- if (IS_ERR(base))
- return PTR_ERR(base);
+ if (!base)
+ return -ENOMEM;
gth = devm_kzalloc(dev, sizeof(*gth), GFP_KERNEL);
if (!gth)
diff --git a/drivers/hwtracing/intel_th/msu.c b/drivers/hwtracing/intel_th/msu.c
index 80a12384ed..70ca27e456 100644
--- a/drivers/hwtracing/intel_th/msu.c
+++ b/drivers/hwtracing/intel_th/msu.c
@@ -1458,8 +1458,8 @@ static int intel_th_msc_probe(struct intel_th_device *thdev)
return -ENODEV;
base = devm_ioremap(dev, res->start, resource_size(res));
- if (IS_ERR(base))
- return PTR_ERR(base);
+ if (!base)
+ return -ENOMEM;
msc = devm_kzalloc(dev, sizeof(*msc), GFP_KERNEL);
if (!msc)
diff --git a/drivers/hwtracing/intel_th/pti.c b/drivers/hwtracing/intel_th/pti.c
index 1e3bbc8982..57cbfdcc7e 100644
--- a/drivers/hwtracing/intel_th/pti.c
+++ b/drivers/hwtracing/intel_th/pti.c
@@ -207,8 +207,8 @@ static int intel_th_pti_probe(struct intel_th_device *thdev)
return -ENODEV;
base = devm_ioremap(dev, res->start, resource_size(res));
- if (IS_ERR(base))
- return PTR_ERR(base);
+ if (!base)
+ return -ENOMEM;
pti = devm_kzalloc(dev, sizeof(*pti), GFP_KERNEL);
if (!pti)
diff --git a/drivers/hwtracing/intel_th/sth.c b/drivers/hwtracing/intel_th/sth.c
index e488fccbfd..56101c33e1 100644
--- a/drivers/hwtracing/intel_th/sth.c
+++ b/drivers/hwtracing/intel_th/sth.c
@@ -194,16 +194,16 @@ static int intel_th_sth_probe(struct intel_th_device *thdev)
return -ENODEV;
base = devm_ioremap(dev, res->start, resource_size(res));
- if (IS_ERR(base))
- return PTR_ERR(base);
+ if (!base)
+ return -ENOMEM;
res = intel_th_device_get_resource(thdev, IORESOURCE_MEM, 1);
if (!res)
return -ENODEV;
channels = devm_ioremap(dev, res->start, resource_size(res));
- if (IS_ERR(channels))
- return PTR_ERR(channels);
+ if (!channels)
+ return -ENOMEM;
sth = devm_kzalloc(dev, sizeof(*sth), GFP_KERNEL);
if (!sth)
--
2.6.1
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-10-16 14:10 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-16 14:09 [PATCH 0/2] stm/intel_th: Misc fixes Alexander Shishkin
2015-10-16 14:09 ` [PATCH 1/2] stm class: Select configfs Alexander Shishkin
2015-10-16 14:09 ` [PATCH 2/2] intel_th: Check for NULL instead of ERR_PTR Alexander Shishkin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®