blob: d264960d2b77aacb19ae5d72781f8ee507a3e534 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
-- SPDX-License-Identifier: GPL-2.0-only
with Interfaces.C;
with HW.GFX.EDID;
package GMA is
function read_edid
(raw_edid : out HW.GFX.EDID.Raw_EDID_Data;
port : in Interfaces.C.int)
return Interfaces.C.int
with
Export, Convention => C, External_Name => "gma_read_edid";
end GMA;
|