···119119/* Intel agpgart driver */120120#define AGP_PHYSICAL_MEMORY 2121121122122+/* store information about an Ixxx DVO */123123+/* The i830->i865 use multiple DVOs with multiple i2cs */124124+/* the i915, i945 have a single sDVO i2c bus - which is different */125125+#define MAX_OUTPUTS 6126126+122127/* these are outputs from the chip - integrated only123128 external chips are via DVO or SDVO output */124129#define INTELFB_OUTPUT_UNUSED 0···349344350345 /* index into plls */351346 int pll_index;347347+348348+ /* outputs */349349+ int num_outputs;350350+ struct intelfb_output_rec output[MAX_OUTPUTS];352351};353352354353#define IS_I9XX(dinfo) (((dinfo)->chipset == INTEL_915G)||(dinfo->chipset == INTEL_915GM)||((dinfo)->chipset == INTEL_945G)||(dinfo->chipset==INTEL_945GM))