linux-kernel-mentees.lists.linuxfoundation.org archive mirror
 help / color / mirror / Atom feed
* [Linux-kernel-mentees] [PATCH 00/18] Rename some identifier and functions.
@ 2020-02-11 12:38 Pragat Pandya
  2020-02-11 12:38 ` [Linux-kernel-mentees] [PATCH 01/18] staging: exfat: Rename function "ffsUmountVol" to "ffs_umount_vol" Pragat Pandya
                   ` (17 more replies)
  0 siblings, 18 replies; 20+ messages in thread
From: Pragat Pandya @ 2020-02-11 12:38 UTC (permalink / raw)
  To: gregkh, valdis.kletnieks
  Cc: devel, Pragat Pandya, linux-kernel, linux-fsdevel, linux-kernel-mentees

This patchset renames following variable and fucntions in source
Fix checkpatch warning: Avoid CamelCase
 -ffsUmountVol->ffs_umount_vol
 -ffsGetVolInfo->ffs_get_vol_info
 -ffsSyncVol->ffs_sync_vol
 -ffsLookupFile->ffs_lookup_file
 -ffsCreateFile->ffs_create_file
 -ffsReadFile->ffs_read_file
 -LogSector->log_sector
 -ffsWriteFile->ffs_write_file
 -ffsTruncateFile->ffs_truncate_file
 -ffsMoveFile->ffs_move_file
 -ffsRemoveFile->ffs_remove_file
 -ffsMountVol->ffs_mount_vol
 -ffsReadStat->ffs_read_stat
 -ffsWriteStat->ffs_write_stat
 -ffsMapCluster->ffs_map_cluster
 -ffsCreateDir->ffs_create_dir
 -ffsReadDir->ffs_read_dir
 -ffsRemoveDir->ffs_remove_dir

Pragat Pandya (18):
  staging: exfat: Rename function "ffsUmountVol" to "ffs_umount_vol"
  staging: exfat: Rename function "ffsGetVolInfo" to "ffs_get_vol_info"
  staging: exfat: Rename function "ffsSyncVol" to "ffs_sync_vol"
  staging: exfat: Rename function "ffsLookupFile" to "ffs_lookup_file"
  staging: exfat: Rename function "ffsCreateFile" to "ffs_create_file"
  staging: exfat: Rename function "ffsReadFile" to "ffs_read_file"
  staging: exfat: Rename variable "LogSector" to "log_sector"
  staging: exfat: Rename function "ffsWriteFile" to "ffs_write_file"
  staging: exfat: Rename function "ffsTruncateFile" to
    "ffs_truncate_file"
  staging: exfat: Rename function "ffsMoveFile" to "ffs_move_file"
  staging: exfat: Rename function "ffsRemoveFile" to "ffs_remove_file"
  staging: exfat: Rename function "ffsMountVol" to "ffs_mount_vol"
  staging: exfat: Rename function "ffsReadStat" to "ffs_read_stat"
  staging: exfat: Rename function "ffsWriteStat" to "ffs_write_stat"
  staging: exfat: Rename function "ffsMapCluster" to "ffs_map_cluster"
  staging: exfat: Rename function "ffsCreateDir" to "ffs_create_dir"
  staging: exfat: Rename function "ffsReadDir" to "ffs_read_dir"
  staging: exfat: Rename function "ffsRemoveDir" to "ffs_remove_dir"

 drivers/staging/exfat/exfat_super.c | 114 ++++++++++++++--------------
 1 file changed, 57 insertions(+), 57 deletions(-)

-- 
2.17.1

_______________________________________________
Linux-kernel-mentees mailing list
Linux-kernel-mentees@lists.linuxfoundation.org
https://lists.linuxfoundation.org/mailman/listinfo/linux-kernel-mentees

^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2020-02-11 19:27 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-11 12:38 [Linux-kernel-mentees] [PATCH 00/18] Rename some identifier and functions Pragat Pandya
2020-02-11 12:38 ` [Linux-kernel-mentees] [PATCH 01/18] staging: exfat: Rename function "ffsUmountVol" to "ffs_umount_vol" Pragat Pandya
2020-02-11 19:27   ` Greg KH
2020-02-11 12:38 ` [Linux-kernel-mentees] [PATCH 02/18] staging: exfat: Rename function "ffsGetVolInfo" to "ffs_get_vol_info" Pragat Pandya
2020-02-11 12:38 ` [Linux-kernel-mentees] [PATCH 03/18] staging: exfat: Rename function "ffsSyncVol" to "ffs_sync_vol" Pragat Pandya
2020-02-11 12:38 ` [Linux-kernel-mentees] [PATCH 04/18] staging: exfat: Rename function "ffsLookupFile" to "ffs_lookup_file" Pragat Pandya
2020-02-11 12:38 ` [Linux-kernel-mentees] [PATCH 05/18] staging: exfat: Rename function "ffsCreateFile" to "ffs_create_file" Pragat Pandya
2020-02-11 12:38 ` [Linux-kernel-mentees] [PATCH 06/18] staging: exfat: Rename function "ffsReadFile" to "ffs_read_file" Pragat Pandya
2020-02-11 12:38 ` [Linux-kernel-mentees] [PATCH 07/18] staging: exfat: Rename variable "LogSector" to "log_sector" Pragat Pandya
2020-02-11 12:38 ` [Linux-kernel-mentees] [PATCH 08/18] staging: exfat: Rename function "ffsWriteFile" to "ffs_write_file" Pragat Pandya
2020-02-11 12:38 ` [Linux-kernel-mentees] [PATCH 09/18] staging: exfat: Rename function "ffsTruncateFile" to "ffs_truncate_file" Pragat Pandya
2020-02-11 12:38 ` [Linux-kernel-mentees] [PATCH 10/18] staging: exfat: Rename function "ffsMoveFile" to "ffs_move_file" Pragat Pandya
2020-02-11 12:38 ` [Linux-kernel-mentees] [PATCH 11/18] staging: exfat: Rename function "ffsRemoveFile" to "ffs_remove_file" Pragat Pandya
2020-02-11 12:38 ` [Linux-kernel-mentees] [PATCH 12/18] staging: exfat: Rename function "ffsMountVol" to "ffs_mount_vol" Pragat Pandya
2020-02-11 12:38 ` [Linux-kernel-mentees] [PATCH 13/18] staging: exfat: Rename function "ffsReadStat" to "ffs_read_stat" Pragat Pandya
2020-02-11 12:38 ` [Linux-kernel-mentees] [PATCH 14/18] staging: exfat: Rename function "ffsWriteStat" to "ffs_write_stat" Pragat Pandya
2020-02-11 12:38 ` [Linux-kernel-mentees] [PATCH 15/18] staging: exfat: Rename function "ffsMapCluster" to "ffs_map_cluster" Pragat Pandya
2020-02-11 12:38 ` [Linux-kernel-mentees] [PATCH 16/18] staging: exfat: Rename function "ffsCreateDir" to "ffs_create_dir" Pragat Pandya
2020-02-11 12:38 ` [Linux-kernel-mentees] [PATCH 17/18] staging: exfat: Rename function "ffsReadDir" to "ffs_read_dir" Pragat Pandya
2020-02-11 12:38 ` [Linux-kernel-mentees] [PATCH 18/18] staging: exfat: Rename function "ffsRemoveDir" to "ffs_remove_dir" Pragat Pandya

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).