diff for duplicates of <20200810175827.GA14392@gmail.com> diff --git a/a/1.txt b/N1/1.txt index 5b80149..70e1566 100644 --- a/a/1.txt +++ b/N1/1.txt @@ -93,7 +93,7 @@ On Mon, Aug 10, 2020 at 06:54:58PM +0200, Sam Ravnborg wrote: > > > > > > > -> > > > - if (state.event = PM_EVENT_SUSPEND) { +> > > > - if (state.event == PM_EVENT_SUSPEND) { > > > > - console_lock(); > > > > - gx_powerdown(info); > > > > - fb_set_suspend(info, 1); @@ -149,7 +149,7 @@ On Mon, Aug 10, 2020 at 06:54:58PM +0200, Sam Ravnborg wrote: > > And as it was legacy code, it was invoked by pci_legacy_suspend() for > > pci_pm_suspend(), pci_pm_freeze() and pci_pm_poweroff(). > > Thus, the code was wrapped inside "if" container: -> > if (state.event = PM_EVENT_SUSPEND) { } +> > if (state.event == PM_EVENT_SUSPEND) { } > > > > After binding it with dev_pm_ops variable, pm->suspend() is invoked by just > > pci_pm_suspend() which is required. @@ -216,3 +216,7 @@ Vaibhav Gupta > > > > dri-devel mailing list > > > > dri-devel@lists.freedesktop.org > > > > https://lists.freedesktop.org/mailman/listinfo/dri-devel +_______________________________________________ +Linux-kernel-mentees mailing list +Linux-kernel-mentees@lists.linuxfoundation.org +https://lists.linuxfoundation.org/mailman/listinfo/linux-kernel-mentees diff --git a/a/content_digest b/N1/content_digest index 622e498..36c2065 100644 --- a/a/content_digest +++ b/N1/content_digest @@ -4,23 +4,22 @@ "ref\020200810093948.GB6615@gmail.com\0" "ref\020200810165458.GA292825@ravnborg.org\0" "From\0Vaibhav Gupta <vaibhavgupta40@gmail.com>\0" - "Subject\0Re: [PATCH v1 01/12] fbdev: gxfb: use generic power management\0" - "Date\0Mon, 10 Aug 2020 18:10:27 +0000\0" + "Subject\0Re: [Linux-kernel-mentees] [PATCH v1 01/12] fbdev: gxfb: use generic power management\0" + "Date\0Mon, 10 Aug 2020 23:28:27 +0530\0" "To\0Sam Ravnborg <sam@ravnborg.org>\0" "Cc\0linux-fbdev@vger.kernel.org" + Antonino Daplas <adaplas@gmail.com> Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> Vaibhav Gupta <vaibhav.varodek@gmail.com> Florian Tobias Schandinat <FlorianSchandinat@gmx.de> Russell King <linux@armlinux.org.uk> dri-devel@lists.freedesktop.org linux-kernel@vger.kernel.org - Bjorn Helgaas <bjorn@helgaas.com> Bjorn Helgaas <helgaas@kernel.org> linux-arm-kernel@lists.infradead.org Andres Salomon <dilinger@queued.net> Bjorn Helgaas <bhelgaas@google.com> Paul Mackerras <paulus@samba.org> - Shuah Khan <skhan@linuxfoundation.org> linux-kernel-mentees@lists.linuxfoundation.org " linux-geode@lists.infradead.org\0" "\00:1\0" @@ -120,7 +119,7 @@ "> \n" "> > \n" "> > > > \n" - "> > > > -\tif (state.event = PM_EVENT_SUSPEND) {\n" + "> > > > -\tif (state.event == PM_EVENT_SUSPEND) {\n" "> > > > -\t\tconsole_lock();\n" "> > > > -\t\tgx_powerdown(info);\n" "> > > > -\t\tfb_set_suspend(info, 1);\n" @@ -176,7 +175,7 @@ "> > And as it was legacy code, it was invoked by pci_legacy_suspend() for\n" "> > pci_pm_suspend(), pci_pm_freeze() and pci_pm_poweroff().\n" "> > Thus, the code was wrapped inside \"if\" container:\n" - "> > \tif (state.event = PM_EVENT_SUSPEND) { }\n" + "> > \tif (state.event == PM_EVENT_SUSPEND) { }\n" "> > \n" "> > After binding it with dev_pm_ops variable, pm->suspend() is invoked by just\n" "> > pci_pm_suspend() which is required.\n" @@ -242,6 +241,10 @@ "> > > > _______________________________________________\n" "> > > > dri-devel mailing list\n" "> > > > dri-devel@lists.freedesktop.org\n" - > > > > https://lists.freedesktop.org/mailman/listinfo/dri-devel + "> > > > https://lists.freedesktop.org/mailman/listinfo/dri-devel\n" + "_______________________________________________\n" + "Linux-kernel-mentees mailing list\n" + "Linux-kernel-mentees@lists.linuxfoundation.org\n" + https://lists.linuxfoundation.org/mailman/listinfo/linux-kernel-mentees -de8e98434c21a9255a802e807d0c556fdfd7d6bbc4577e54ba0a2bfa2872c5a4 +2a068ce997cf0ca6075fb8c0893b2e33167110e920dd4d9035ea74608907b9b6
diff --git a/a/1.txt b/N2/1.txt index 5b80149..27986c9 100644 --- a/a/1.txt +++ b/N2/1.txt @@ -93,7 +93,7 @@ On Mon, Aug 10, 2020 at 06:54:58PM +0200, Sam Ravnborg wrote: > > > > > > > -> > > > - if (state.event = PM_EVENT_SUSPEND) { +> > > > - if (state.event == PM_EVENT_SUSPEND) { > > > > - console_lock(); > > > > - gx_powerdown(info); > > > > - fb_set_suspend(info, 1); @@ -149,7 +149,7 @@ On Mon, Aug 10, 2020 at 06:54:58PM +0200, Sam Ravnborg wrote: > > And as it was legacy code, it was invoked by pci_legacy_suspend() for > > pci_pm_suspend(), pci_pm_freeze() and pci_pm_poweroff(). > > Thus, the code was wrapped inside "if" container: -> > if (state.event = PM_EVENT_SUSPEND) { } +> > if (state.event == PM_EVENT_SUSPEND) { } > > > > After binding it with dev_pm_ops variable, pm->suspend() is invoked by just > > pci_pm_suspend() which is required. @@ -216,3 +216,8 @@ Vaibhav Gupta > > > > dri-devel mailing list > > > > dri-devel@lists.freedesktop.org > > > > https://lists.freedesktop.org/mailman/listinfo/dri-devel + +_______________________________________________ +linux-arm-kernel mailing list +linux-arm-kernel@lists.infradead.org +http://lists.infradead.org/mailman/listinfo/linux-arm-kernel diff --git a/a/content_digest b/N2/content_digest index 622e498..ee5fb1e 100644 --- a/a/content_digest +++ b/N2/content_digest @@ -5,9 +5,10 @@ "ref\020200810165458.GA292825@ravnborg.org\0" "From\0Vaibhav Gupta <vaibhavgupta40@gmail.com>\0" "Subject\0Re: [PATCH v1 01/12] fbdev: gxfb: use generic power management\0" - "Date\0Mon, 10 Aug 2020 18:10:27 +0000\0" + "Date\0Mon, 10 Aug 2020 23:28:27 +0530\0" "To\0Sam Ravnborg <sam@ravnborg.org>\0" "Cc\0linux-fbdev@vger.kernel.org" + Antonino Daplas <adaplas@gmail.com> Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> Vaibhav Gupta <vaibhav.varodek@gmail.com> Florian Tobias Schandinat <FlorianSchandinat@gmx.de> @@ -120,7 +121,7 @@ "> \n" "> > \n" "> > > > \n" - "> > > > -\tif (state.event = PM_EVENT_SUSPEND) {\n" + "> > > > -\tif (state.event == PM_EVENT_SUSPEND) {\n" "> > > > -\t\tconsole_lock();\n" "> > > > -\t\tgx_powerdown(info);\n" "> > > > -\t\tfb_set_suspend(info, 1);\n" @@ -176,7 +177,7 @@ "> > And as it was legacy code, it was invoked by pci_legacy_suspend() for\n" "> > pci_pm_suspend(), pci_pm_freeze() and pci_pm_poweroff().\n" "> > Thus, the code was wrapped inside \"if\" container:\n" - "> > \tif (state.event = PM_EVENT_SUSPEND) { }\n" + "> > \tif (state.event == PM_EVENT_SUSPEND) { }\n" "> > \n" "> > After binding it with dev_pm_ops variable, pm->suspend() is invoked by just\n" "> > pci_pm_suspend() which is required.\n" @@ -242,6 +243,11 @@ "> > > > _______________________________________________\n" "> > > > dri-devel mailing list\n" "> > > > dri-devel@lists.freedesktop.org\n" - > > > > https://lists.freedesktop.org/mailman/listinfo/dri-devel + "> > > > https://lists.freedesktop.org/mailman/listinfo/dri-devel\n" + "\n" + "_______________________________________________\n" + "linux-arm-kernel mailing list\n" + "linux-arm-kernel@lists.infradead.org\n" + http://lists.infradead.org/mailman/listinfo/linux-arm-kernel -de8e98434c21a9255a802e807d0c556fdfd7d6bbc4577e54ba0a2bfa2872c5a4 +b63dffa0e99ceb3f896b58807cbd4383c4d7e98c14aaa6deb2cae1bf8fb4883d
diff --git a/a/1.txt b/N3/1.txt index 5b80149..c61178c 100644 --- a/a/1.txt +++ b/N3/1.txt @@ -93,7 +93,7 @@ On Mon, Aug 10, 2020 at 06:54:58PM +0200, Sam Ravnborg wrote: > > > > > > > -> > > > - if (state.event = PM_EVENT_SUSPEND) { +> > > > - if (state.event == PM_EVENT_SUSPEND) { > > > > - console_lock(); > > > > - gx_powerdown(info); > > > > - fb_set_suspend(info, 1); @@ -149,7 +149,7 @@ On Mon, Aug 10, 2020 at 06:54:58PM +0200, Sam Ravnborg wrote: > > And as it was legacy code, it was invoked by pci_legacy_suspend() for > > pci_pm_suspend(), pci_pm_freeze() and pci_pm_poweroff(). > > Thus, the code was wrapped inside "if" container: -> > if (state.event = PM_EVENT_SUSPEND) { } +> > if (state.event == PM_EVENT_SUSPEND) { } > > > > After binding it with dev_pm_ops variable, pm->suspend() is invoked by just > > pci_pm_suspend() which is required. @@ -216,3 +216,7 @@ Vaibhav Gupta > > > > dri-devel mailing list > > > > dri-devel@lists.freedesktop.org > > > > https://lists.freedesktop.org/mailman/listinfo/dri-devel +_______________________________________________ +dri-devel mailing list +dri-devel@lists.freedesktop.org +https://lists.freedesktop.org/mailman/listinfo/dri-devel diff --git a/a/content_digest b/N3/content_digest index 622e498..7364857 100644 --- a/a/content_digest +++ b/N3/content_digest @@ -5,7 +5,7 @@ "ref\020200810165458.GA292825@ravnborg.org\0" "From\0Vaibhav Gupta <vaibhavgupta40@gmail.com>\0" "Subject\0Re: [PATCH v1 01/12] fbdev: gxfb: use generic power management\0" - "Date\0Mon, 10 Aug 2020 18:10:27 +0000\0" + "Date\0Mon, 10 Aug 2020 23:28:27 +0530\0" "To\0Sam Ravnborg <sam@ravnborg.org>\0" "Cc\0linux-fbdev@vger.kernel.org" Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> @@ -120,7 +120,7 @@ "> \n" "> > \n" "> > > > \n" - "> > > > -\tif (state.event = PM_EVENT_SUSPEND) {\n" + "> > > > -\tif (state.event == PM_EVENT_SUSPEND) {\n" "> > > > -\t\tconsole_lock();\n" "> > > > -\t\tgx_powerdown(info);\n" "> > > > -\t\tfb_set_suspend(info, 1);\n" @@ -176,7 +176,7 @@ "> > And as it was legacy code, it was invoked by pci_legacy_suspend() for\n" "> > pci_pm_suspend(), pci_pm_freeze() and pci_pm_poweroff().\n" "> > Thus, the code was wrapped inside \"if\" container:\n" - "> > \tif (state.event = PM_EVENT_SUSPEND) { }\n" + "> > \tif (state.event == PM_EVENT_SUSPEND) { }\n" "> > \n" "> > After binding it with dev_pm_ops variable, pm->suspend() is invoked by just\n" "> > pci_pm_suspend() which is required.\n" @@ -242,6 +242,10 @@ "> > > > _______________________________________________\n" "> > > > dri-devel mailing list\n" "> > > > dri-devel@lists.freedesktop.org\n" - > > > > https://lists.freedesktop.org/mailman/listinfo/dri-devel + "> > > > https://lists.freedesktop.org/mailman/listinfo/dri-devel\n" + "_______________________________________________\n" + "dri-devel mailing list\n" + "dri-devel@lists.freedesktop.org\n" + https://lists.freedesktop.org/mailman/listinfo/dri-devel -de8e98434c21a9255a802e807d0c556fdfd7d6bbc4577e54ba0a2bfa2872c5a4 +4266e19ab8adb88a9a4c438eaafe7da60739c22d084036007b9bf28e96315bde
diff --git a/a/1.txt b/N4/1.txt index 5b80149..606a37b 100644 --- a/a/1.txt +++ b/N4/1.txt @@ -93,7 +93,7 @@ On Mon, Aug 10, 2020 at 06:54:58PM +0200, Sam Ravnborg wrote: > > > > > > > -> > > > - if (state.event = PM_EVENT_SUSPEND) { +> > > > - if (state.event == PM_EVENT_SUSPEND) { > > > > - console_lock(); > > > > - gx_powerdown(info); > > > > - fb_set_suspend(info, 1); @@ -149,7 +149,7 @@ On Mon, Aug 10, 2020 at 06:54:58PM +0200, Sam Ravnborg wrote: > > And as it was legacy code, it was invoked by pci_legacy_suspend() for > > pci_pm_suspend(), pci_pm_freeze() and pci_pm_poweroff(). > > Thus, the code was wrapped inside "if" container: -> > if (state.event = PM_EVENT_SUSPEND) { } +> > if (state.event == PM_EVENT_SUSPEND) { } > > > > After binding it with dev_pm_ops variable, pm->suspend() is invoked by just > > pci_pm_suspend() which is required. diff --git a/a/content_digest b/N4/content_digest index 622e498..27e2b92 100644 --- a/a/content_digest +++ b/N4/content_digest @@ -5,24 +5,25 @@ "ref\020200810165458.GA292825@ravnborg.org\0" "From\0Vaibhav Gupta <vaibhavgupta40@gmail.com>\0" "Subject\0Re: [PATCH v1 01/12] fbdev: gxfb: use generic power management\0" - "Date\0Mon, 10 Aug 2020 18:10:27 +0000\0" + "Date\0Mon, 10 Aug 2020 23:28:27 +0530\0" "To\0Sam Ravnborg <sam@ravnborg.org>\0" - "Cc\0linux-fbdev@vger.kernel.org" - Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> + "Cc\0Bjorn Helgaas <helgaas@kernel.org>" + Bjorn Helgaas <bhelgaas@google.com> + Bjorn Helgaas <bjorn@helgaas.com> Vaibhav Gupta <vaibhav.varodek@gmail.com> - Florian Tobias Schandinat <FlorianSchandinat@gmx.de> + Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> + Paul Mackerras <paulus@samba.org> Russell King <linux@armlinux.org.uk> - dri-devel@lists.freedesktop.org - linux-kernel@vger.kernel.org - Bjorn Helgaas <bjorn@helgaas.com> - Bjorn Helgaas <helgaas@kernel.org> - linux-arm-kernel@lists.infradead.org Andres Salomon <dilinger@queued.net> - Bjorn Helgaas <bhelgaas@google.com> - Paul Mackerras <paulus@samba.org> + Antonino Daplas <adaplas@gmail.com> + Florian Tobias Schandinat <FlorianSchandinat@gmx.de> + linux-fbdev@vger.kernel.org + linux-kernel@vger.kernel.org + dri-devel@lists.freedesktop.org + linux-geode@lists.infradead.org Shuah Khan <skhan@linuxfoundation.org> linux-kernel-mentees@lists.linuxfoundation.org - " linux-geode@lists.infradead.org\0" + " linux-arm-kernel@lists.infradead.org\0" "\00:1\0" "b\0" "On Mon, Aug 10, 2020 at 06:54:58PM +0200, Sam Ravnborg wrote:\n" @@ -120,7 +121,7 @@ "> \n" "> > \n" "> > > > \n" - "> > > > -\tif (state.event = PM_EVENT_SUSPEND) {\n" + "> > > > -\tif (state.event == PM_EVENT_SUSPEND) {\n" "> > > > -\t\tconsole_lock();\n" "> > > > -\t\tgx_powerdown(info);\n" "> > > > -\t\tfb_set_suspend(info, 1);\n" @@ -176,7 +177,7 @@ "> > And as it was legacy code, it was invoked by pci_legacy_suspend() for\n" "> > pci_pm_suspend(), pci_pm_freeze() and pci_pm_poweroff().\n" "> > Thus, the code was wrapped inside \"if\" container:\n" - "> > \tif (state.event = PM_EVENT_SUSPEND) { }\n" + "> > \tif (state.event == PM_EVENT_SUSPEND) { }\n" "> > \n" "> > After binding it with dev_pm_ops variable, pm->suspend() is invoked by just\n" "> > pci_pm_suspend() which is required.\n" @@ -244,4 +245,4 @@ "> > > > dri-devel@lists.freedesktop.org\n" > > > > https://lists.freedesktop.org/mailman/listinfo/dri-devel -de8e98434c21a9255a802e807d0c556fdfd7d6bbc4577e54ba0a2bfa2872c5a4 +c3942e619dd639cebbdd2e738df4077b376cda26334b61232497993d53c4644f
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.