[PATCH v4 4/4] iio: humidity: si7020: added No Hold read mode
Lars-Peter Clausen
lars at metafoo.de
Thu Oct 29 02:17:53 PDT 2015
>> So maybe more like this:
>>
>> static inline bool i2c_check_quirks(struct i2c_adapter *adap, u64 quirks)
>> {
>> if (!adap->quirks)
>> return false;
>> return (adap->quirks->flags & quirks) == quirks;
>> }
>
> Should I use bool (like in your snippet) or int (like i2c_check_functionality) as return type?
I'd use bool, given that the result is a boolean value. It's semantically
more clear this way.
More information about the linux-arm-kernel
mailing list