Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'rproc-v4.6-rc1' of git://github.com/andersson/remoteproc

Pull remoteproc fix from Bjorn Andersson:
"Fix incorrect error check in the ST remoteproc driver and advertise
the newly created linux-remoteproc mailing list"

* tag 'rproc-v4.6-rc1' of git://github.com/andersson/remoteproc:
MAINTAINERS: Add mailing list for remote processor subsystems
remoteproc: st: fix check of syscon_regmap_lookup_by_phandle() return value

+5 -2
+3
MAINTAINERS
··· 5042 5042 HARDWARE SPINLOCK CORE 5043 5043 M: Ohad Ben-Cohen <ohad@wizery.com> 5044 5044 M: Bjorn Andersson <bjorn.andersson@linaro.org> 5045 + L: linux-remoteproc@vger.kernel.org 5045 5046 S: Maintained 5046 5047 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git 5047 5048 F: Documentation/hwspinlock.txt ··· 9315 9314 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM 9316 9315 M: Ohad Ben-Cohen <ohad@wizery.com> 9317 9316 M: Bjorn Andersson <bjorn.andersson@linaro.org> 9317 + L: linux-remoteproc@vger.kernel.org 9318 9318 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git 9319 9319 S: Maintained 9320 9320 F: drivers/remoteproc/ ··· 9325 9323 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM 9326 9324 M: Ohad Ben-Cohen <ohad@wizery.com> 9327 9325 M: Bjorn Andersson <bjorn.andersson@linaro.org> 9326 + L: linux-remoteproc@vger.kernel.org 9328 9327 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git 9329 9328 S: Maintained 9330 9329 F: drivers/rpmsg/
+2 -2
drivers/remoteproc/st_remoteproc.c
··· 189 189 } 190 190 191 191 ddata->boot_base = syscon_regmap_lookup_by_phandle(np, "st,syscfg"); 192 - if (!ddata->boot_base) { 192 + if (IS_ERR(ddata->boot_base)) { 193 193 dev_err(dev, "Boot base not found\n"); 194 - return -EINVAL; 194 + return PTR_ERR(ddata->boot_base); 195 195 } 196 196 197 197 err = of_property_read_u32_index(np, "st,syscfg", 1,