diff options
author | Adam Guerin <[email protected]> | 2023-06-09 17:38:19 +0100 |
---|---|---|
committer | Herbert Xu <[email protected]> | 2023-06-16 20:30:35 +0800 |
commit | 038ccc2876686a508d9d46d23ad540a5ad6a969f (patch) | |
tree | ad956e17e17f2443e1c96c38a306a99fcf9a8fcc /tools/testing/selftests/bpf/progs/test_autoload.c | |
parent | f75bd28beb4a804a42a01e26f162f8c42b65fb09 (diff) |
crypto: qat - move returns to default case
Make use of the default statements by changing the pattern:
switch(condition) {
case COND_A:
...
break;
case COND_b:
...
break;
}
return ret;
in
switch(condition) {
case COND_A:
...
break;
case COND_b:
...
break;
default:
return ret;
}
Signed-off-by: Adam Guerin <[email protected]>
Reviewed-by: Giovanni Cabiddu <[email protected]>
Reviewed-by: Andy Shevchenko <[email protected]>
Signed-off-by: Herbert Xu <[email protected]>
Diffstat (limited to 'tools/testing/selftests/bpf/progs/test_autoload.c')
0 files changed, 0 insertions, 0 deletions