/* Return the string name for supported chipset 'n'; NULL otherwise. */ static void RADEONIdentify(int flags) { xf86PrintChipsets(RADEON_NAME, "Driver for ATI Radeon chipsets", RADEONChipsets); }
/*------------------------------------------------------------------------- * NscIdentify. * * Description : This function identify an Nscfamily version. * * * Parameters. * flags : flags may be used in PreInit* * * Returns : none * * Comments : none * *------------------------------------------------------------------------ */ static void NscIdentify(int flags) { xf86PrintChipsets(NSC_NAME, "Nsc family driver (version " NSC_VERSION_NAME ") " "for chipsets", GeodeChipsets); }
/* * ATIIdentify -- * * Print the driver's list of chipset names. */ void ATIIdentify ( int flags ) { xf86PrintChipsets(ATI_NAME, (NumberOf(ATIPublicChipsetNames) <= 2) ? "ATI driver (version " ATI_VERSION_NAME ") for chipset" : "ATI driver (version " ATI_VERSION_NAME ") for chipsets", ATIPublicChipsetNames); R128Identify(flags); RADEONIdentify(flags); }
static void VMWAREIdentify(int flags) { xf86PrintChipsets(VMWARE_NAME, "driver for VMware SVGA", VMWAREChipsets); }
static void NestedIdentify(int flags) { xf86PrintChipsets(NESTED_NAME, "Driver for nested servers", NestedChipsets); }
static void Identify(int flags) { xf86PrintChipsets("modesetting", "Driver for Modesetting Kernel Drivers", Chipsets); }
static void TegraIdentify(int flags) { xf86PrintChipsets("opentegra", "Open Source Driver for NVIDIA Tegra", Chipsets); }
static void vmw_xorg_identify(int flags) { xf86PrintChipsets("vmwgfx", "Driver for VMware SVGA device", vmw_xorg_chipsets); }
/* Mandatory */ static void VoodooIdentify(int flags) { xf86PrintChipsets(VOODOO_NAME, "driver for Voodoo1/Voodoo2", VoodooChipsets); }
/* Mandatory */ static void CIRIdentify(int flags) { xf86PrintChipsets(CIR_NAME, "driver for Cirrus chipsets", CIRChipsets); }
/* Mandatory */ static void DUMMYIdentify(int flags) { xf86PrintChipsets(DUMMY_NAME, "Driver for Dummy chipsets", DUMMYChipsets); }
static void intel_xorg_identify(int flags) { xf86PrintChipsets("modesetting", "Driver for Modesetting Kernel Drivers", intel_xorg_chipsets); }
/* * intel_identify -- * * Returns the string name for the driver based on the chipset. * */ static void intel_identify(int flags) { xf86PrintChipsets(INTEL_NAME, "Driver for Intel Integrated Graphics Chipsets", intel_chipsets); }
static void r600_xorg_identify(int flags) { xf86PrintChipsets("r600", "Driver for R6xx Gallium with KMS", r600_xorg_chipsets); }
static void r300_xorg_identify(int flags) { xf86PrintChipsets("r300", "Driver for Radeon Gallium with KMS", r300_xorg_chipsets); }
/*------------------------------------------------------------------------- * AmdIdentify. * * Description : This function identify an Amdfamily version. * * * Parameters. * flags : flags may be used in PreInit* * * Returns : none * * Comments : none * *------------------------------------------------------------------------ */ static void AmdIdentify(int flags) { xf86PrintChipsets(GEODE_NAME, "Driver for AMD Geode Chipsets", GeodeChipsets); }