Serenity Operating System
1/*
2 * Copyright (c) 2021-2022, Liav A. <liavalb@hotmail.co.il>
3 *
4 * SPDX-License-Identifier: BSD-2-Clause
5 */
6
7#pragma once
8
9#include <AK/Types.h>
10
11namespace Kernel::Graphics {
12
13// Note: Address 0x50 is expected to be the DDC2 (EDID) i2c address.
14static constexpr u8 ddc2_i2c_address = 0x50;
15
16}