]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
Merge 6.13-rc4 into char-misc-next
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 13 Jan 2025 05:17:49 +0000 (06:17 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 13 Jan 2025 05:17:49 +0000 (06:17 +0100)
We need the IIO fixes in here as well, and it resolves a merge conflict
in:
drivers/iio/adc/ti-ads1119.c

Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1  2 
MAINTAINERS
drivers/bus/mhi/host/pci_generic.c
drivers/iio/adc/ad4695.c
drivers/iio/adc/ad7124.c
drivers/iio/adc/ad7173.c
drivers/iio/adc/rockchip_saradc.c
drivers/iio/adc/ti-ads1119.c
drivers/iio/inkern.c
drivers/iio/light/bh1745.c
drivers/iio/temperature/tmp006.c
drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gpio.c

diff --cc MAINTAINERS
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
index 0a68ecdea4e6f0084d2d0887015f679d2c944edc,c268e27eec12301cfb6bfd345ff7c2fe6778cd39..de019b3faa48152b3bfc251c38205758fcf35e91
@@@ -500,8 -500,8 +500,8 @@@ static irqreturn_t ads1119_trigger_hand
        struct iio_dev *indio_dev = pf->indio_dev;
        struct ads1119_state *st = iio_priv(indio_dev);
        struct {
-               unsigned int sample;
+               s16 sample;
 -              s64 timestamp __aligned(8);
 +              aligned_s64 timestamp;
        } scan;
        unsigned int index;
        int ret;
Simple merge
Simple merge
Simple merge
index 97c7dbe43377bc77a355a5cf1bd5b91ddb987448,3c1359d8d4e6926733e0b45c13e6462d09fc798a..04756302b8780544829ab96383ab6df09f45efe5
@@@ -147,11 -147,8 +147,11 @@@ static int pci1xxxx_gpio_set_config(str
        case PIN_CONFIG_DRIVE_OPEN_DRAIN:
                pci1xxx_assign_bit(priv->reg_base, OPENDRAIN_OFFSET(offset), (offset % 32), true);
                break;
 +      case PIN_CONFIG_DRIVE_PUSH_PULL:
 +              pci1xxx_assign_bit(priv->reg_base, OPENDRAIN_OFFSET(offset), (offset % 32), false);
 +              break;
        default:
-               ret = -EOPNOTSUPP;
+               ret = -ENOTSUPP;
                break;
        }
        spin_unlock_irqrestore(&priv->lock, flags);