mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-07 04:09:21 +00:00
scatterlist: refactor the sg_nents
Replace 'while' with 'for' as suggested by Tejun Heo Signed-off-by: Maxim Levitsky <maximlevitsky@gmail.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
2e48461029
commit
232f1b5106
1 changed files with 2 additions and 5 deletions
|
@ -49,12 +49,9 @@ EXPORT_SYMBOL(sg_next);
|
|||
**/
|
||||
int sg_nents(struct scatterlist *sg)
|
||||
{
|
||||
int nents = 0;
|
||||
while (sg) {
|
||||
int nents;
|
||||
for (nents = 0; sg; sg = sg_next(sg))
|
||||
nents++;
|
||||
sg = sg_next(sg);
|
||||
}
|
||||
|
||||
return nents;
|
||||
}
|
||||
EXPORT_SYMBOL(sg_nents);
|
||||
|
|
Loading…
Reference in a new issue