mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 07:24:58 +00:00

Like the HID, Audio and Storage subsystem, the Graphics subsystem (which handles GPUs technically) exposes unix device files (typically in /dev). To ensure consistency across the repository, move all related files to a new directory under Kernel/Devices called "GPU". Also remove the redundant "GPU" word from the VirtIO driver directory, and the word "Graphics" from GraphicsManagement.{h,cpp} filenames.
16 lines
296 B
C++
16 lines
296 B
C++
/*
|
|
* Copyright (c) 2021-2022, Liav A. <liavalb@hotmail.co.il>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
|
|
namespace Kernel::Graphics {
|
|
|
|
// Note: Address 0x50 is expected to be the DDC2 (EDID) i2c address.
|
|
static constexpr u8 ddc2_i2c_address = 0x50;
|
|
|
|
}
|