summaryrefslogtreecommitdiffstats
path: root/src/include/ipxe/device.h
diff options
context:
space:
mode:
authorMichael Brown2011-04-07 21:59:47 +0200
committerMichael Brown2011-04-08 00:09:19 +0200
commitfc7e2be617df0f671977655249f5c6a04a0ba04f (patch)
treee0b37397cdfb2e4d588ec5c34fa9f05bb41719d4 /src/include/ipxe/device.h
parent[build] Refuse to attempt building with the GNU gold linker (diff)
downloadipxe-fc7e2be617df0f671977655249f5c6a04a0ba04f.tar.gz
ipxe-fc7e2be617df0f671977655249f5c6a04a0ba04f.tar.xz
ipxe-fc7e2be617df0f671977655249f5c6a04a0ba04f.zip
[device] Make driver name a generic device property
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe/device.h')
-rw-r--r--src/include/ipxe/device.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/ipxe/device.h b/src/include/ipxe/device.h
index 635ce59c..435af6ec 100644
--- a/src/include/ipxe/device.h
+++ b/src/include/ipxe/device.h
@@ -58,6 +58,8 @@ struct device_description {
struct device {
/** Name */
char name[16];
+ /** Driver name */
+ const char *driver_name;
/** Device description */
struct device_description desc;
/** Devices on the same bus */