VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   32 Branches   54 Tags
author: Dave Gordon <david.s.gordon@intel.com> 2015-06-30 14:58:52 -0700 committer: Linus Torvalds <torvalds@linux-foundation.org> 2015-06-30 19:44:59 -0700 commit: 4dc7daf843f3914c9c0c7efb71b8f251c9c4636f parent: 6157dbbfbf9d8e4a2b6d4e5ee35e864ab9ee8414
Commit Summary:
lib/scatterlist.c: fix kerneldoc for sg_pcopy_{to,from}_buffer()
Diffstat:
1 file changed, 2 insertions, 2 deletions
diff --git a/lib/scatterlist.c b/lib/scatterlist.c
index 99fbc2f238c4..965c36e7a5a4 100644
--- a/lib/scatterlist.c
+++ b/lib/scatterlist.c
@@ -729,8 +729,8 @@ EXPORT_SYMBOL(sg_copy_to_buffer);
  * @sgl:		 The SG list
  * @nents:		 Number of SG entries
  * @buf:		 Where to copy from
- * @skip:		 Number of bytes to skip before copying
  * @buflen:		 The number of bytes to copy
+ * @skip:		 Number of bytes to skip before copying
  *
  * Returns the number of copied bytes.
  *
@@ -747,8 +747,8 @@ EXPORT_SYMBOL(sg_pcopy_from_buffer);
  * @sgl:		 The SG list
  * @nents:		 Number of SG entries
  * @buf:		 Where to copy to
- * @skip:		 Number of bytes to skip before copying
  * @buflen:		 The number of bytes to copy
+ * @skip:		 Number of bytes to skip before copying
  *
  * Returns the number of copied bytes.
  *