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 'i2c-for-6.15-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux

Pull i2c fixes from Wolfram Sang:

- Address translator: fix wrong include

- ChromeOS EC tunnel: fix potential NULL pointer dereference

* tag 'i2c-for-6.15-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux:
i2c: atr: Fix wrong include
i2c: cros-ec-tunnel: defer probe if parent EC is not present

+4 -1
+3
drivers/i2c/busses/i2c-cros-ec-tunnel.c
··· 247 247 u32 remote_bus; 248 248 int err; 249 249 250 + if (!ec) 251 + return dev_err_probe(dev, -EPROBE_DEFER, "couldn't find parent EC device\n"); 252 + 250 253 if (!ec->cmd_xfer) { 251 254 dev_err(dev, "Missing sendrecv\n"); 252 255 return -EINVAL;
+1 -1
drivers/i2c/i2c-atr.c
··· 8 8 * Originally based on i2c-mux.c 9 9 */ 10 10 11 - #include <linux/fwnode.h> 12 11 #include <linux/i2c-atr.h> 13 12 #include <linux/i2c.h> 14 13 #include <linux/kernel.h> 15 14 #include <linux/module.h> 16 15 #include <linux/mutex.h> 16 + #include <linux/property.h> 17 17 #include <linux/slab.h> 18 18 #include <linux/spinlock.h> 19 19