lkml.org 
[lkml]   [2020]   [Sep]   [24]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    /
    From
    Date
    SubjectRe: [PATCH 1/2] drm/bridge: sii902x: Enable I/O and core VCC supplies if present
    Hi Alexandre,

    On Thu, Sep 24, 2020 at 5:16 PM Alexandru Gagniuc <mr.nuke.me@gmail.com> wrote:

    > + ret = regulator_enable(sii902x->cvcc12);
    > + if (ret < 0) {
    > + dev_err(dev, "Failed to enable cvcc12 supply: %d\n", ret);
    > + regulator_disable(sii902x->iovcc);
    > + return PTR_ERR(sii902x->cvcc12);

    return ret;

    >
    > ret = regmap_write(sii902x->regmap, SII902X_REG_TPI_RQB, 0x0);
    > @@ -1012,11 +1052,11 @@ static int sii902x_probe(struct i2c_client *client,
    > regmap_read(sii902x->regmap, SII902X_INT_STATUS, &status);
    > regmap_write(sii902x->regmap, SII902X_INT_STATUS, status);
    >
    > - if (client->irq > 0) {
    > + if (sii902x->i2c->irq > 0) {

    Unrelated change.

    > regmap_write(sii902x->regmap, SII902X_INT_ENABLE,
    > SII902X_HOTPLUG_EVENT);
    >
    > - ret = devm_request_threaded_irq(dev, client->irq, NULL,
    > + ret = devm_request_threaded_irq(dev, sii902x->i2c->irq, NULL,

    Unrelated change.
    sii902x_interrupt,
    > IRQF_ONESHOT, dev_name(dev),
    > sii902x);
    > @@ -1031,9 +1071,9 @@ static int sii902x_probe(struct i2c_client *client,
    >
    > sii902x_audio_codec_init(sii902x, dev);
    >
    > - i2c_set_clientdata(client, sii902x);
    > + i2c_set_clientdata(sii902x->i2c, sii902x);

    Unrelated change.

    > - sii902x->i2cmux = i2c_mux_alloc(client->adapter, dev,
    > + sii902x->i2cmux = i2c_mux_alloc(sii902x->i2c->adapter, dev,

    Unrelated change.

    \
     
     \ /
      Last update: 2020-09-24 22:23    [W:2.583 / U:0.384 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site