File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -932,7 +932,7 @@ static int dw_i3c_master_priv_xfers(struct i3c_dev_desc *dev,
932
932
return 0 ;
933
933
934
934
if (i3c_nxfers > master -> caps .cmdfifodepth )
935
- return - ENOTSUPP ;
935
+ return - EOPNOTSUPP ;
936
936
937
937
for (i = 0 ; i < i3c_nxfers ; i ++ ) {
938
938
if (i3c_xfers [i ].rnw )
@@ -943,7 +943,7 @@ static int dw_i3c_master_priv_xfers(struct i3c_dev_desc *dev,
943
943
944
944
if (ntxwords > master -> caps .datafifodepth ||
945
945
nrxwords > master -> caps .datafifodepth )
946
- return - ENOTSUPP ;
946
+ return - EOPNOTSUPP ;
947
947
948
948
xfer = dw_i3c_master_alloc_xfer (master , i3c_nxfers );
949
949
if (!xfer )
@@ -1093,7 +1093,7 @@ static int dw_i3c_master_i2c_xfers(struct i2c_dev_desc *dev,
1093
1093
return 0 ;
1094
1094
1095
1095
if (i2c_nxfers > master -> caps .cmdfifodepth )
1096
- return - ENOTSUPP ;
1096
+ return - EOPNOTSUPP ;
1097
1097
1098
1098
for (i = 0 ; i < i2c_nxfers ; i ++ ) {
1099
1099
if (i2c_xfers [i ].flags & I2C_M_RD )
@@ -1104,7 +1104,7 @@ static int dw_i3c_master_i2c_xfers(struct i2c_dev_desc *dev,
1104
1104
1105
1105
if (ntxwords > master -> caps .datafifodepth ||
1106
1106
nrxwords > master -> caps .datafifodepth )
1107
- return - ENOTSUPP ;
1107
+ return - EOPNOTSUPP ;
1108
1108
1109
1109
xfer = dw_i3c_master_alloc_xfer (master , i2c_nxfers );
1110
1110
if (!xfer )
You can’t perform that action at this time.
0 commit comments