[GIT PULL] Staging and IIO driver patches for 5.6-rc1

2020-01-29 Thread Greg KH
The following changes since commit def9d2780727cec3313ed3522d0123158d87224d: Linux 5.5-rc7 (2020-01-19 16:02:49 -0800) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git tags/staging-5.6-rc1 for you to fetch changes up to fc157998b8257f

Re: [PATCH 09/22] staging: exfat: Rename variable "Size" to "size"

2020-01-29 Thread Pragat Pandya
On Mon, 2020-01-27 at 14:57 +0300, Dan Carpenter wrote: > On Mon, Jan 27, 2020 at 03:43:30PM +0530, Pragat Pandya wrote: > > Change all the occurences of "Size" to "size" in exfat. > > > > Signed-off-by: Pragat Pandya > > --- > > drivers/staging/exfat/exfat.h | 2 +- > > 1 file changed, 1 insert

Re: [PATCH 09/22] staging: exfat: Rename variable "Size" to "size"

2020-01-29 Thread Greg KH
On Wed, Jan 29, 2020 at 04:10:39PM +0530, Pragat Pandya wrote: > On Mon, 2020-01-27 at 14:57 +0300, Dan Carpenter wrote: > > On Mon, Jan 27, 2020 at 03:43:30PM +0530, Pragat Pandya wrote: > > > Change all the occurences of "Size" to "size" in exfat. > > > > > > Signed-off-by: Pragat Pandya > > >

Re: [PATCH 09/22] staging: exfat: Rename variable "Size" to "size"

2020-01-29 Thread Pragat Pandya
On Wed, 2020-01-29 at 11:50 +0100, Greg KH wrote: > On Wed, Jan 29, 2020 at 04:10:39PM +0530, Pragat Pandya wrote: > > On Mon, 2020-01-27 at 14:57 +0300, Dan Carpenter wrote: > > > On Mon, Jan 27, 2020 at 03:43:30PM +0530, Pragat Pandya wrote: > > > > Change all the occurences of "Size" to "size" i

[PATCH] staging: exfat: remove 'vol_type' variable.

2020-01-29 Thread Tetsuhiro Kohada
remove 'vol_type' variable. The following issues are described in exfat's TODO. > clean up the remaining vol_type checks, which are of two types: > some are ?: operators with magic numbers, and the rest are places > where we're doing stuff with '.' and '..'. The vol_type variable is always set to

Re: [PATCH] staging: exfat: remove 'vol_type' variable.

2020-01-29 Thread Dan Carpenter
On Wed, Jan 29, 2020 at 08:12:32PM +0900, Tetsuhiro Kohada wrote: > @@ -2085,7 +2069,7 @@ static int exfat_readdir(struct file *filp, struct > dir_context *ctx) > > cpos = ctx->pos; > /* Fake . and .. for the root directory. */ > - if ((p_fs->vol_type == EXFAT) || (inode->i_ino =

[PATCH 00/19] Renaming some identifiers

2020-01-29 Thread Pragat Pandya
This patchset renames following nineteen variables in exfat.h Fix checkpatch warning: Avoid CamelCase -Year->year -Day->day -Hour->hour -Minute->minute -Second->second -Millisecond->millisecond -FatType->fat_type -ClusterSize->cluster_size -NumClusters->num_clusters -FreeClusters->free_cl

[PATCH 02/19] staging: exfat: Rename variable 'Month' to 'month'

2020-01-29 Thread Pragat Pandya
Fix checkpatch warning: Avoid CamelCase. Change all occurrences of identifier "Month" to "month" Signed-off-by: Pragat Pandya --- drivers/staging/exfat/exfat.h | 2 +- drivers/staging/exfat/exfat_super.c | 20 ++-- 2 files changed, 11 insertions(+), 11 deletions(-) diff -

[PATCH 01/19] staging: exfat: Rename variable 'Year' to 'year'

2020-01-29 Thread Pragat Pandya
Fix checkpatch warning: Avoid CamelCase. Change all occurrences of identifier "Year" to "year" Signed-off-by: Pragat Pandya --- drivers/staging/exfat/exfat.h | 2 +- drivers/staging/exfat/exfat_super.c | 20 ++-- 2 files changed, 11 insertions(+), 11 deletions(-) diff --g

[PATCH 04/19] staging: exfat: Rename variable 'Hour' to 'hour'

2020-01-29 Thread Pragat Pandya
Fix checkpatch warning: Avoid CamelCase. Change all occurrences of identifier "Hour" to "hour" Signed-off-by: Pragat Pandya --- drivers/staging/exfat/exfat.h | 2 +- drivers/staging/exfat/exfat_super.c | 20 ++-- 2 files changed, 11 insertions(+), 11 deletions(-) diff --g

[PATCH 05/19] staging: exfat: Rename variable 'Minute' to 'minute'

2020-01-29 Thread Pragat Pandya
Fix checkpatch warning: Avoid CamelCase. Change all occurrences of identifier "Minute" to "minute" Signed-off-by: Pragat Pandya --- drivers/staging/exfat/exfat.h | 2 +- drivers/staging/exfat/exfat_super.c | 20 ++-- 2 files changed, 11 insertions(+), 11 deletions(-) diff

[PATCH 08/19] staging: exfat: Rename variable 'FatType' to 'fat_type'

2020-01-29 Thread Pragat Pandya
Fix checkpatch warning: Avoid CamelCase. Change all occurrences of identifier "FatType" to "fat_type" Signed-off-by: Pragat Pandya --- drivers/staging/exfat/exfat.h | 2 +- drivers/staging/exfat/exfat_super.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/

[PATCH 10/19] staging: exfat: Rename variable 'NumClusters' to 'num_cluster'

2020-01-29 Thread Pragat Pandya
Fix checkpatch warning: Avoid CamelCase. Change all occurrences of identifier "NumClusters" to "num_clusters" Signed-off-by: Pragat Pandya --- drivers/staging/exfat/exfat.h | 2 +- drivers/staging/exfat/exfat_super.c | 10 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff

[PATCH 09/19] staging: exfat: Rename variable 'ClusterSize' to 'cluster_size'

2020-01-29 Thread Pragat Pandya
Fix checkpatch warning: Avoid CamelCase. Change all occurrences of identifier "ClusterSize" to "cluster_size" Signed-off-by: Pragat Pandya --- drivers/staging/exfat/exfat.h | 2 +- drivers/staging/exfat/exfat_super.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git

[PATCH 07/19] staging: exfat: Rename variable 'MilliSecond' to 'millisecond'

2020-01-29 Thread Pragat Pandya
Fix checkpatch warning: Avoid CamelCase. Change all occurrences of identifier "MilliSecond" to "millisecond" Signed-off-by: Pragat Pandya --- Changes in v1: -Rename "MilliSecond" as "milli_second" Changes in v2: -Remove unnecessary '_'(underscore) character form renamed

[PATCH 13/19] staging: exfat: Rename variable 'Name' to 'name'

2020-01-29 Thread Pragat Pandya
Fix checkpatch warning: Avoid CamelCase. Change all occurrences of identifier "Name" to "name" Signed-off-by: Pragat Pandya --- drivers/staging/exfat/exfat.h | 2 +- drivers/staging/exfat/exfat_super.c | 12 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/drive

[PATCH 03/19] staging: exfat: Rename variable 'Day' to 'day'

2020-01-29 Thread Pragat Pandya
Fix checkpatch warning: Avoid CamelCase. Change all occurences of identifier "Day" to "day" Signed-off-by: Pragat Pandya --- drivers/staging/exfat/exfat.h | 2 +- drivers/staging/exfat/exfat_super.c | 20 ++-- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git

[PATCH 11/19] staging: exfat: Rename variable 'FreeClusters' to 'free_clusters'

2020-01-29 Thread Pragat Pandya
Fix checkpatch warning: Avoid CamelCase. Change all occurrences of identifier "FreeClusters" to "free_clusters" Signed-off-by: Pragat Pandya --- drivers/staging/exfat/exfat.h | 2 +- drivers/staging/exfat/exfat_super.c | 8 2 files changed, 5 insertions(+), 5 deletions(-) diff --

[PATCH 06/19] staging: exfat: Rename variable 'Second' to 'second'

2020-01-29 Thread Pragat Pandya
Fix checkpatch warning: Avoid CamelCase. Change all occurrences of identifier "Second" to "second" Signed-off-by: Pragat Pandya --- drivers/staging/exfat/exfat.h | 2 +- drivers/staging/exfat/exfat_super.c | 20 ++-- 2 files changed, 11 insertions(+), 11 deletions(-) diff

[PATCH 12/19] staging: exfat: Rename variable 'UsedClusters' to 'used_clusters'

2020-01-29 Thread Pragat Pandya
Fix checkpatch warning: Avoid CamelCase. Change all occurrecnes of identifier "UsedClusters" to "used_clusters" Signed-off-by: Pragat Pandya --- drivers/staging/exfat/exfat.h | 2 +- drivers/staging/exfat/exfat_super.c | 8 2 files changed, 5 insertions(+), 5 deletions(-) diff --

[PATCH 16/19] staging: exfat: Rename variable 'NumSubdirs' to 'num_subdirs'

2020-01-29 Thread Pragat Pandya
Fix checkpatch warning: Avoid CamelCase. Change all occurrences of identifier "NumSubdirs" to "num_subdirs" Signed-off-by: Pragat Pandya --- drivers/staging/exfat/exfat.h | 2 +- drivers/staging/exfat/exfat_super.c | 10 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --

[PATCH 18/19] staging: exfat: Rename variable 'ModifyTimestamp' to 'modify_timestamp'

2020-01-29 Thread Pragat Pandya
Fix checkpatch warning: Avoid CamelCase. Change all occurrences of "ModifyTimestamp" to "modify_timestamp" Signed-off-by: Pragat Pandya --- drivers/staging/exfat/exfat.h | 2 +- drivers/staging/exfat/exfat_super.c | 46 ++--- 2 files changed, 24 insertions(+), 24 d

[PATCH 17/19] staging: exfat: Rename variable 'CreateTimestamp' to 'create_timestamp'

2020-01-29 Thread Pragat Pandya
Fix checkpatch warning: Avoid CamelCase. Change all occurrences of identifier "CreateTimestamp" to "create_timestamp" Signed-off-by: Pragat Pandya --- drivers/staging/exfat/exfat.h | 2 +- drivers/staging/exfat/exfat_super.c | 46 ++--- 2 files changed, 24 insertio

[PATCH 15/19] staging: exfat: Rename variable 'Attr' to 'attr'

2020-01-29 Thread Pragat Pandya
Fix checkpatch warning: Avoid CamelCase. Change all occurrences of identifier "Attr" to "attr" Signed-off-by: Pragat Pandya --- drivers/staging/exfat/exfat.h | 2 +- drivers/staging/exfat/exfat_super.c | 24 2 files changed, 13 insertions(+), 13 deletions(-) diff

[PATCH 14/19] staging: exfat: Rename variable 'ShortName' to 'short_name'

2020-01-29 Thread Pragat Pandya
Fix checkpatch warning: Avoid CamelCase. Change all occurrences of identifier "ShortName" to "short_name" Signed-off-by: Pragat Pandya --- drivers/staging/exfat/exfat.h | 2 +- drivers/staging/exfat/exfat_super.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dr

[PATCH 19/19] staging: exfat: Rename variable 'AccessTimestamp' to 'access_timestamp'

2020-01-29 Thread Pragat Pandya
Fix checkpatch warning: Avoid CamelCase. Change all occurrences of identifier "AccessTimestamp" to "access_timestamp" Signed-off-by: Pragat Pandya --- drivers/staging/exfat/exfat.h | 2 +- drivers/staging/exfat/exfat_super.c | 10 +- 2 files changed, 6 insertions(+), 6 deletions(-

Re: [GIT PULL] Staging and IIO driver patches for 5.6-rc1

2020-01-29 Thread pr-tracker-bot
The pull request you sent on Wed, 29 Jan 2020 11:14:41 +0100: > git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git > tags/staging-5.6-rc1 has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/7ba31c3f2f1ee095d8126f4d3757fc3b2bc3c838 Thank you! -- Deet-doot-d

[PATCH v2] staging: exfat: remove 'vol_type' variable.

2020-01-29 Thread Tetsuhiro Kohada
remove 'vol_type' variable. The following issues are described in exfat's TODO. > clean up the remaining vol_type checks, which are of two types: > some are ?: operators with magic numbers, and the rest are places > where we're doing stuff with '.' and '..'. The vol_type variable is always set to