gdsys_rxaui_ctrl: Return old state
authorMario Six <mario.six@gdsys.cc>
Mon, 28 Jan 2019 08:47:41 +0000 (09:47 +0100)
committerMario Six <mario.six@gdsys.cc>
Tue, 21 May 2019 05:52:34 +0000 (07:52 +0200)
Make the gdsys_rxaui_ctrl polarity setting function return the old
state to comply with the API requirements.

Signed-off-by: Mario Six <mario.six@gdsys.cc>
drivers/misc/gdsys_rxaui_ctrl.c

index 9a63c329bcd7b717964cf97150de20d7ff0e00e8..f2c955b13d7de440ce79ffd3ce9b6fd84c286260 100644 (file)
@@ -29,6 +29,7 @@ struct gdsys_rxaui_ctrl_regs {
 
 struct gdsys_rxaui_ctrl_priv {
        struct regmap *map;
+       bool state;
 };
 
 int gdsys_rxaui_set_polarity_inversion(struct udevice *dev, bool val)
@@ -36,6 +37,8 @@ int gdsys_rxaui_set_polarity_inversion(struct udevice *dev, bool val)
        struct gdsys_rxaui_ctrl_priv *priv = dev_get_priv(dev);
        u16 state;
 
+       priv->state = !priv->state;
+
        rxaui_ctrl_get(priv->map, ctrl_1, &state);
 
        if (val)
@@ -45,7 +48,7 @@ int gdsys_rxaui_set_polarity_inversion(struct udevice *dev, bool val)
 
        rxaui_ctrl_set(priv->map, ctrl_1, state);
 
-       return 0;
+       return !priv->state;
 }
 
 static const struct misc_ops gdsys_rxaui_ctrl_ops = {
@@ -58,6 +61,8 @@ int gdsys_rxaui_ctrl_probe(struct udevice *dev)
 
        regmap_init_mem(dev, &priv->map);
 
+       priv->state = false;
+
        return 0;
 }