summaryrefslogtreecommitdiff
path: root/gpxe/src/drivers/bus/isa_ids.c
diff options
context:
space:
mode:
Diffstat (limited to 'gpxe/src/drivers/bus/isa_ids.c')
-rw-r--r--gpxe/src/drivers/bus/isa_ids.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/gpxe/src/drivers/bus/isa_ids.c b/gpxe/src/drivers/bus/isa_ids.c
deleted file mode 100644
index 73101584..00000000
--- a/gpxe/src/drivers/bus/isa_ids.c
+++ /dev/null
@@ -1,26 +0,0 @@
-#include <stdint.h>
-#include <stdio.h>
-#include <byteswap.h>
-#include <gpxe/isa_ids.h>
-
-/*
- * EISA and ISAPnP IDs are actually mildly human readable, though in a
- * somewhat brain-damaged way.
- *
- */
-char * isa_id_string ( unsigned int vendor, unsigned int product ) {
- static char buf[7];
- int i;
-
- /* Vendor ID is a compressed ASCII string */
- vendor = bswap_16 ( vendor );
- for ( i = 2 ; i >= 0 ; i-- ) {
- buf[i] = ( 'A' - 1 + ( vendor & 0x1f ) );
- vendor >>= 5;
- }
-
- /* Product ID is a 4-digit hex string */
- sprintf ( &buf[3], "%04x", bswap_16 ( product ) );
-
- return buf;
-}