mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-09 19:16:02 +00:00
Kernel: Move x86 Bochs VBE code to the Arch/x86 directory
To do this, we make the QEMUDisplayConnector class more standalone so it does not need to inherit from the BochsDisplayConnector class.
This commit is contained in:
parent
c50a81e93e
commit
8d6da9863f
Notes:
sideshowbarker
2024-07-17 06:47:20 +09:00
Author: https://github.com/supercomputer7
Commit: 8d6da9863f
Pull-request: https://github.com/SerenityOS/serenity/pull/15173
Reviewed-by: https://github.com/linusg
7 changed files with 86 additions and 13 deletions
|
@ -19,7 +19,6 @@ namespace Kernel {
|
|||
class GraphicsManagement;
|
||||
struct BochsDisplayMMIORegisters;
|
||||
|
||||
class BochsDisplayConnector;
|
||||
class BochsGraphicsAdapter final : public GenericGraphicsAdapter
|
||||
, public PCI::Device {
|
||||
friend class GraphicsManagement;
|
||||
|
@ -33,6 +32,6 @@ private:
|
|||
|
||||
explicit BochsGraphicsAdapter(PCI::DeviceIdentifier const&);
|
||||
|
||||
LockRefPtr<BochsDisplayConnector> m_display_connector;
|
||||
LockRefPtr<DisplayConnector> m_display_connector;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue