Re: [PATCH v2] hpet: Fix missing '=' character in the __setup() code of hpet_mmap_enable

2019-01-06 Thread Buland Singh
On 12/21/18 6:16 PM, Greg KH wrote: On Fri, Dec 21, 2018 at 05:48:38PM +0530, Buland Singh wrote: On 12/20/18 7:39 PM, Greg KH wrote: On Thu, Dec 20, 2018 at 07:12:55PM +0530, Buland Singh wrote: On 12/20/18 5:59 PM, Greg KH wrote: On Thu, Dec 20, 2018 at 05:35:24PM +0530, Buland Singh wrote

Re: [PATCH v2] hpet: Fix missing '=' character in the __setup() code of hpet_mmap_enable

2018-12-21 Thread Buland Singh
On 12/20/18 7:39 PM, Greg KH wrote: On Thu, Dec 20, 2018 at 07:12:55PM +0530, Buland Singh wrote: On 12/20/18 5:59 PM, Greg KH wrote: On Thu, Dec 20, 2018 at 05:35:24PM +0530, Buland Singh wrote: Commit '3d035f580699 ("drivers/char/hpet.c: allow user controlled mmap for user proc

Re: [PATCH v2] hpet: Fix missing '=' character in the __setup() code of hpet_mmap_enable

2018-12-20 Thread Buland Singh
On 12/20/18 5:59 PM, Greg KH wrote: On Thu, Dec 20, 2018 at 05:35:24PM +0530, Buland Singh wrote: Commit '3d035f580699 ("drivers/char/hpet.c: allow user controlled mmap for user processes")' introduced a new kernel command line parameter hpet_mmap, that is required to expose the

[PATCH v2] hpet: Fix missing '=' character in the __setup() code of hpet_mmap_enable

2018-12-20 Thread Buland Singh
user controlled mmap for user processes") Signed-off-by: Buland Singh --- drivers/char/hpet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/char/hpet.c b/drivers/char/hpet.c index 4a22b4b41aef..9bffcd37cc7b 100644 --- a/drivers/char/hpet.c +++ b/drivers/char/hpe

Re: [PATCH] hpet: Fix missing '=' character in the __setup() code of hpet_mmap_enable.

2018-12-19 Thread Buland Singh
On 12/19/18 6:07 PM, Greg KH wrote: On Wed, Dec 19, 2018 at 05:34:32PM +0530, Buland Singh wrote: On 12/19/18 3:16 PM, Greg KH wrote: On Wed, Dec 19, 2018 at 02:55:02PM +0530, Buland Singh wrote: The kernel command parameter 'hpet_mmap' never takes effect due to missing '=' character

Re: [PATCH] hpet: Fix missing '=' character in the __setup() code of hpet_mmap_enable.

2018-12-19 Thread Buland Singh
On 12/19/18 3:16 PM, Greg KH wrote: On Wed, Dec 19, 2018 at 02:55:02PM +0530, Buland Singh wrote: The kernel command parameter 'hpet_mmap' never takes effect due to missing '=' character in the __setup() code of hpet_mmap_enable and the memory map of the HPET registers never get expose

[PATCH] hpet: Fix missing '=' character in the __setup() code of hpet_mmap_enable.

2018-12-19 Thread Buland Singh
The kernel command parameter 'hpet_mmap' never takes effect due to missing '=' character in the __setup() code of hpet_mmap_enable and the memory map of the HPET registers never get expose to userspace. Signed-off-by: Buland Singh --- drivers/char/hpet.c | 2 +- 1 file changed, 1 insertion