blob: 1fb54ccf8627bdb1726c121247a6881287713dcc [file] [log] [blame]
Damien Zammit43a1f782015-08-19 15:16:59 +10001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2015 Damien Zammit <damien@zamaudio.com>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of
9 * the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 */
16
17#ifndef NORTHBRIDGE_INTEL_X4X_CHIP_H
18#define NORTHBRIDGE_INTEL_X4X_CHIP_H
19
20#include <drivers/intel/gma/i915.h>
21
22struct northbridge_intel_x4x_config {
23 struct i915_gpu_controller_info gfx;
24};
25
26#endif