Comment 5 for bug 423866

Revision history for this message
Martin-Éric Racine (q-funk) wrote :

As pointed out by Julien Cristau, the fall back to "amd" on GX2 and LX can be safely removed for servers 1.6.0 and 1.6.3, since both GX2 and LX have fully migrated to the -geode driver.

However, in principle, GX2 could still fall back to "nsc" as needed, thus we'd be left with:

  case 0x1022:
      if (dev->device_id == 0x2081) {
  /* AMD Geode LX */
   driverList[0] = "geode";
      }
      break;
 /* Geode products acquired by AMD still carrying an NSC vendor_id */
 case 0x100B:
     if (dev->device_id == 0x0030) {
  /* NSC Geode GX2 */
  driverList[0] = "geode";
  driverList[1] = "nsc";
     } else
  /* NSC Geode SC */
  driverList[0] = "nsc";
     break;