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