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

Pull i2c fix from Wolfram Sang:
"A simple but worthwhile I2C driver fix for 4.16"

* 'i2c/for-current' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux:
i2c: i2c-stm32f7: fix no check on returned setup

+5
+5
drivers/i2c/busses/i2c-stm32f7.c
··· 888 888 } 889 889 890 890 setup = of_device_get_match_data(&pdev->dev); 891 + if (!setup) { 892 + dev_err(&pdev->dev, "Can't get device data\n"); 893 + ret = -ENODEV; 894 + goto clk_free; 895 + } 891 896 i2c_dev->setup = *setup; 892 897 893 898 ret = device_property_read_u32(i2c_dev->dev, "i2c-scl-rising-time-ns",