The variable old_data is a bool type, which only receives the value
'true' in the function ad2s1210_config_write and ad2s1210_config_read.
There is no other use for this variable. This patch removes old_data
from the ad2s1210_state and from all the function that use it.
Signed-off-by: Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
        unsigned int fclkin;
        unsigned int fexcit;
        bool hysteresis;
-       bool old_data;
        u8 resolution;
        enum ad2s1210_mode mode;
        u8 rx[2] ____cacheline_aligned;
        ret = spi_write(st->sdev, st->tx, 1);
        if (ret < 0)
                return ret;
-       st->old_data = true;
 
        return 0;
 }
        ret = spi_sync_transfer(st->sdev, &xfer, 1);
        if (ret < 0)
                return ret;
-       st->old_data = true;
 
        return st->rx[1];
 }