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 branch 'for-rc' of git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux

Pull thermal fix from Zhang Rui:
"Only one patch this time, which fixes a crash in rcar_thermal driver.
From Dirk Behme"

* 'for-rc' of git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux:
thermal: rcar_thermal: Fix priv->zone error handling

+1
+1
drivers/thermal/rcar_thermal.c
··· 504 504 if (IS_ERR(priv->zone)) { 505 505 dev_err(dev, "can't register thermal zone\n"); 506 506 ret = PTR_ERR(priv->zone); 507 + priv->zone = NULL; 507 508 goto error_unregister; 508 509 } 509 510