Commit 01745112de5f721dd5afb06bc60b4a1e65e397ce

Authored by Bartlomiej Zolnierkiewicz
1 parent 26a5b04075

ide: move ide_fixstring() documentation to ide-iops.c from ide.h

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>

Showing 2 changed files with 8 additions and 8 deletions Side-by-side Diff

drivers/ide/ide-iops.c
... ... @@ -403,6 +403,13 @@
403 403 #endif
404 404 }
405 405  
  406 +/*
  407 + * ide_fixstring() cleans up and (optionally) byte-swaps a text string,
  408 + * removing leading/trailing blanks and compressing internal blanks.
  409 + * It is primarily used to tidy up the model name/number fields as
  410 + * returned by the WIN_[P]IDENTIFY commands.
  411 + */
  412 +
406 413 void ide_fixstring (u8 *s, const int bytecount, const int byteswap)
407 414 {
408 415 u8 *p = s, *end = &s[bytecount & ~1]; /* bytecount must be even */
... ... @@ -1031,14 +1031,7 @@
1031 1031 extern ide_startstop_t ide_abort(ide_drive_t *, const char *);
1032 1032  
1033 1033 extern void ide_fix_driveid(struct hd_driveid *);
1034   -/*
1035   - * ide_fixstring() cleans up and (optionally) byte-swaps a text string,
1036   - * removing leading/trailing blanks and compressing internal blanks.
1037   - * It is primarily used to tidy up the model name/number fields as
1038   - * returned by the WIN_[P]IDENTIFY commands.
1039   - *
1040   - * (s, bytecount, byteswap)
1041   - */
  1034 +
1042 1035 extern void ide_fixstring(u8 *, const int, const int);
1043 1036  
1044 1037 int ide_wait_stat(ide_startstop_t *, ide_drive_t *, u8, u8, unsigned long);