[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20241028133441.7b92ee4f@canb.auug.org.au>
Date: Mon, 28 Oct 2024 13:34:41 +1100
From: Stephen Rothwell <sfr@...b.auug.org.au>
To: Dave Airlie <airlied@...hat.com>, Arnd Bergmann <arnd@...db.de>
Cc: DRI <dri-devel@...ts.freedesktop.org>, Arnd Bergmann <arnd@...nel.org>,
Linux Kernel Mailing List <linux-kernel@...r.kernel.org>, Linux Next
Mailing List <linux-next@...r.kernel.org>, Niklas Schnelle
<schnelle@...ux.ibm.com>, Thomas Zimmermann <tzimmermann@...e.de>
Subject: linux-next: manual merge of the drm tree with the asm-generic tree
Hi all,
Today's linux-next merge of the drm tree got a conflict in:
drivers/gpu/drm/tiny/bochs.c
between commit:
65f5bf96750f ("drm: handle HAS_IOPORT dependencies")
from the asm-generic tree and commit:
7934a1c25097 ("drm/bochs: Use video aperture helpers")
from the drm tree.
I fixed it up (see below) and can carry the fix as necessary. This
is now fixed as far as linux-next is concerned, but any non trivial
conflicts should be mentioned to your upstream maintainer when your tree
is submitted for merging. You may also want to consider cooperating
with the maintainer of the conflicting tree to minimise any particularly
complex conflicts.
--
Cheers,
Stephen Rothwell
diff --cc drivers/gpu/drm/tiny/bochs.c
index e738bb858316,447989bb8201..000000000000
--- a/drivers/gpu/drm/tiny/bochs.c
+++ b/drivers/gpu/drm/tiny/bochs.c
@@@ -1,6 -1,6 +1,7 @@@
// SPDX-License-Identifier: GPL-2.0-or-later
+ #include <linux/aperture.h>
+#include <linux/bug.h>
#include <linux/module.h>
#include <linux/pci.h>
@@@ -94,13 -99,13 +100,18 @@@ struct bochs_device
struct drm_connector connector;
};
+ static struct bochs_device *to_bochs_device(const struct drm_device *dev)
+ {
+ return container_of(dev, struct bochs_device, dev);
+ }
+
/* ---------------------------------------------------------------------- */
+static __always_inline bool bochs_uses_mmio(struct bochs_device *bochs)
+{
+ return !IS_ENABLED(CONFIG_HAS_IOPORT) || bochs->mmio;
+}
+
static void bochs_vga_writeb(struct bochs_device *bochs, u16 ioport, u8 val)
{
if (WARN_ON(ioport < 0x3c0 || ioport > 0x3df))
@@@ -234,10 -236,10 +242,10 @@@ static int bochs_hw_init(struct bochs_d
DRM_ERROR("Cannot map mmio region\n");
return -ENOMEM;
}
- } else {
+ } else if (IS_ENABLED(CONFIG_HAS_IOPORT)) {
ioaddr = VBE_DISPI_IOPORT_INDEX;
iosize = 2;
- if (!request_region(ioaddr, iosize, "bochs-drm")) {
+ if (!devm_request_region(&pdev->dev, ioaddr, iosize, "bochs-drm")) {
DRM_ERROR("Cannot request ioports\n");
return -EBUSY;
}
Content of type "application/pgp-signature" skipped
Powered by blists - more mailing lists