Re: GPIO Driver for Skylake-Y PCH

2019-06-17 Thread Alexander Ivanov
On Mon, 17 Jun 2019 09:39 -07:00, Andy Shevchenko wrote: > > How come that this device is GPIO? > I mean what makes you, guys, to come to this conclusion? > Intel document 332996-002EN [1] chapter 28 says GPP_* groups are accessible through the PCH Sideband Interface, while 332690-004EN

Re: GPIO Driver for Skylake-Y PCH

2019-06-17 Thread Andy Shevchenko
On Sat, Jun 15, 2019 at 03:30:24PM -0400, Valdis Klētnieks wrote: > On Fri, 14 Jun 2019 15:40:59 -0700, "Alexander Ivanov" said: > > (Adding likely knowledgeable people to the recipients) > > Jean, Andy, Linus: The situation thus far: Alexander has a system with this > GPIO on it: How come

Re: Fix for https://bugzilla.kernel.org/show_bug.cgi?id=203737

2019-06-17 Thread Matwey V. Kornilov
Hi, I think the following will help you: https://www.kernel.org/doc/html/v5.1/process/submitting-patches.html 17.06.2019 17:27, Саша Ковтуненко пишет: > Hello , > I am trying to fix https://bugzilla.kernel.org/show_bug.cgi?id=203737 in > this way: > --- a/fs/jfs/jfs_logmgr.c > +++

Fix for https://bugzilla.kernel.org/show_bug.cgi?id=203737

2019-06-17 Thread Саша Ковтуненко
Hello , I am trying to fix https://bugzilla.kernel.org/show_bug.cgi?id=203737 in this way: --- a/fs/jfs/jfs_logmgr.c +++ b/fs/jfs/jfs_logmgr.c @@ -1223,6 +1223,7 @@ static int open_dummy_log(struct super_block *sb) /* Make up some stuff */ dummy_log->base = 0;

[IMX] [DRM]: suspend/resume support

2019-06-17 Thread Pintu Agarwal
Hi All, I am trying to implement suspend/resume functionality to to imx-hdmi driver: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/tree/drivers/gpu/drm/imx/dw_hdmi-imx.c?h=v4.9.181 So, I need some help about this. I logged the request in imx community, but it seems they are

Re: Pause a process execution from external program

2019-06-17 Thread Pintu Agarwal
On Fri, Jun 14, 2019 at 1:13 AM Valdis Klētnieks wrote: > > On Thu, 13 Jun 2019 13:22:12 +0530, Shyam Saini said: > > > from command line we use ctrl-z to stop execution of a foreground > > process but you can program > > SIGTSTP signal handler in your application code to do the same. > > Note

Re: Pause a process execution from external program

2019-06-17 Thread Pintu Agarwal
On Thu, Jun 13, 2019 at 8:52 PM Elias Kouskoumvekakis wrote: > > On Thu, Jun 13, 2019 at 10:45 AM Pintu Agarwal wrote: > > > > For some reason, I want to halt/pause the execution (for some > > specified time) of a running process/thread (at some location), > > without modified the source, may be