Re: [PATCH] devfreq: replace sscanf with kstrtol

2017-08-07 Thread gsantosh
wrong frequency when sscanf returns error. From 12e0a347addd70529b2c378299b27b65f0766f99 Mon Sep 17 00:00:00 2001 From: Santosh Mardi Date: Tue, 25 Jul 2017 18:47:11 +0530 Subject: [PATCH] devfreq: replace sscanf with kstrtol store_freq function of devfreq userspace governor executes further

Re: [PATCH] devfreq: replace sscanf with kstrtol

2017-08-06 Thread Chanwoo Choi
gt; implementation results in setting wrong >>> frequency when sscanf returns error. >>> >>> >>> From 12e0a347addd70529b2c378299b27b65f0766f99 Mon Sep 17 00:00:00 2001 >>> From: Santosh Mardi >>> Date: Tue, 25 Jul 2017 18:47:11 +0530 >

Re: [PATCH] devfreq: replace sscanf with kstrtol

2017-08-06 Thread gsantosh
:00:00 2001 From: Santosh Mardi Date: Tue, 25 Jul 2017 18:47:11 +0530 Subject: [PATCH] devfreq: replace sscanf with kstrtol store_freq function of devfreq userspace governor executes further, even if error is returned from sscanf, this will result in setting up wrong frequency value. The usage for

Re: [PATCH] devfreq: replace sscanf with kstrtol

2017-08-04 Thread Chanwoo Choi
:00 2001 > From: Santosh Mardi > Date: Tue, 25 Jul 2017 18:47:11 +0530 > Subject: [PATCH] devfreq: replace sscanf with kstrtol > > store_freq function of devfreq userspace governor > executes further, even if error is returned from sscanf, > this will result in setting up wrong fre

[PATCH] devfreq: replace sscanf with kstrtol

2017-08-03 Thread gsantosh
] devfreq: replace sscanf with kstrtol store_freq function of devfreq userspace governor executes further, even if error is returned from sscanf, this will result in setting up wrong frequency value. The usage for the sscanf is only for single variable so replace sscanf with kstrtol along with error

[PATCH] devfreq: replace sscanf with kstrtol

2017-08-03 Thread gsantosh
] devfreq: replace sscanf with kstrtol store_freq function of devfreq userspace governor executes further, even if error is returned from sscanf, this will result in setting up wrong frequency value. The usage for the sscanf is only for single variable so replace sscanf with kstrtol along with error