Message ID | 20210111155816.3656820-1-mperttunen@nvidia.com |
---|---|
State | Superseded |
Headers | show |
Series | [v2] i2c: tegra-bpmp: ignore DMA safe buffer flag | expand |
On 1/12/21 12:26 PM, Wolfram Sang wrote: > >>> I wonder if bailing out on an unknown flag shouldn't be revisited in >>> general? I mean this will happen again when a new I2C_M_* flag is >>> introduced. >>> >> >> If it's guaranteed that any new flags are optional to handle by the driver, >> than that is certainly better. I'll post a v3 with that approach. > > If there will be a new flag, it is highly likely that it will handle > some corner case which only gets applied when there is a I2C_FUNC_* flag > guarding it. If the new flag turns out to be mandatory, the (poor) > author needs to check with all existing drivers anyhow. > Yep, I suppose that is true :) I just sent out the v3. thanks! Mikko
diff --git a/drivers/i2c/busses/i2c-tegra-bpmp.c b/drivers/i2c/busses/i2c-tegra-bpmp.c index ec7a7e917edd..aa6685cabde3 100644 --- a/drivers/i2c/busses/i2c-tegra-bpmp.c +++ b/drivers/i2c/busses/i2c-tegra-bpmp.c @@ -80,6 +80,8 @@ static int tegra_bpmp_xlate_flags(u16 flags, u16 *out) flags &= ~I2C_M_RECV_LEN; } + flags &= ~I2C_M_DMA_SAFE; + return (flags != 0) ? -EINVAL : 0; }