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 'for-linus-5.7-2' of git://github.com/cminyard/linux-ipmi

Pull IPMI update from Corey Minyard:
"Convert i2c_new_device() to i2c_new_client_device()

Wolfram Sang has asked to have this included in 5.7 so the deprecated
API can be removed next release. There should be no functional
difference.

I think that entire this section of code can be removed; it is
leftover from other things that have since changed, but this is the
safer thing to do for now. The full removal can happen next release"

* tag 'for-linus-5.7-2' of git://github.com/cminyard/linux-ipmi:
char: ipmi: convert to use i2c_new_client_device()

+2 -2
+2 -2
drivers/char/ipmi/ipmi_ssif.c
··· 1947 1947 if (adev->type != &i2c_adapter_type) 1948 1948 return 0; 1949 1949 1950 - addr_info->added_client = i2c_new_device(to_i2c_adapter(adev), 1951 - &addr_info->binfo); 1950 + addr_info->added_client = i2c_new_client_device(to_i2c_adapter(adev), 1951 + &addr_info->binfo); 1952 1952 1953 1953 if (!addr_info->adapter_name) 1954 1954 return 1; /* Only try the first I2C adapter by default. */