| Nico Huber | 83693c8 | 2016-10-08 22:17:55 +0200 | [diff] [blame] | 1 | -- |
| 2 | -- Copyright (C) 2015-2016 secunet Security Networks AG |
| 3 | -- |
| 4 | -- This program is free software; you can redistribute it and/or modify |
| 5 | -- it under the terms of the GNU General Public License as published by |
| 6 | -- the Free Software Foundation; version 2 of the License. |
| 7 | -- |
| 8 | -- This program is distributed in the hope that it will be useful, |
| 9 | -- but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 | -- GNU General Public License for more details. |
| 12 | -- |
| 13 | |
| 14 | private package HW.GFX.GMA.Connectors.EDP |
| 15 | is |
| 16 | |
| 17 | procedure Pre_On |
| 18 | (Port_Cfg : Port_Config; |
| 19 | Pipe_Hint : Word32); |
| 20 | |
| 21 | procedure Post_On |
| 22 | (Link : in DP_Link; |
| 23 | Success : out Boolean); |
| 24 | |
| 25 | pragma Warnings (GNATprove, Off, "unused variable ""Port""", |
| 26 | Reason => "Needed for a common interface"); |
| 27 | procedure Off (Port : Digital_Port); |
| 28 | pragma Warnings (GNATprove, On, "unused variable ""Port"""); |
| 29 | |
| 30 | procedure Pre_Training; |
| 31 | |
| 32 | end HW.GFX.GMA.Connectors.EDP; |