Re: [PATCH v6 1/3] misc/pvpanic: split-up generic and platform dependent code

From: Greg KH
Date: Tue Mar 23 2021 - 08:38:59 EST


On Mon, Mar 22, 2021 at 06:44:25PM +0200, Mihai Carabas wrote:
> Split-up generic and platform dependent code in order to be able to re-use
> generic event handling code in pvpanic PCI device driver in the next patches.
>
> The code from pvpanic.c was split in two new files:
> - pvpanic.c: generic code that handles pvpanic events
> - pvpanic-mmio.c: platform/bus dependent code
>
> Signed-off-by: Mihai Carabas <mihai.carabas@xxxxxxxxxx>
> ---
> drivers/misc/Kconfig | 9 +-
> drivers/misc/Makefile | 2 +-
> drivers/misc/pvpanic.c | 160 ------------------------------------
> drivers/misc/pvpanic/Kconfig | 19 +++++
> drivers/misc/pvpanic/Makefile | 7 ++
> drivers/misc/pvpanic/pvpanic-mmio.c | 134 ++++++++++++++++++++++++++++++
> drivers/misc/pvpanic/pvpanic.c | 77 +++++++++++++++++
> drivers/misc/pvpanic/pvpanic.h | 15 ++++
> 8 files changed, 254 insertions(+), 169 deletions(-)
> delete mode 100644 drivers/misc/pvpanic.c
> create mode 100644 drivers/misc/pvpanic/Kconfig
> create mode 100644 drivers/misc/pvpanic/Makefile
> create mode 100644 drivers/misc/pvpanic/pvpanic-mmio.c
> create mode 100644 drivers/misc/pvpanic/pvpanic.c
> create mode 100644 drivers/misc/pvpanic/pvpanic.h

This patch does not apply to my char-misc-next branch of char-misc.git
on git.kernel.org. What did you make it against?

Please reabase it against the above branch and resend.

thanks,

greg k-h