diff options
author | H. Peter Anvin <hpa@zytor.com> | 2010-07-17 12:36:26 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2010-07-17 12:36:26 -0700 |
commit | 8cca6fd29bb7613f5ba6acb1b740d13f5b6ac01d (patch) | |
tree | 92643a34ef10eedcdf92fdeaf1911c561f4747d0 /core/include/fs.h | |
parent | 465b43c2e0b714336dcd9767ad9c9d39850f70ba (diff) | |
download | syslinux-8cca6fd29bb7613f5ba6acb1b740d13f5b6ac01d.tar.gz syslinux-8cca6fd29bb7613f5ba6acb1b740d13f5b6ac01d.tar.xz syslinux-8cca6fd29bb7613f5ba6acb1b740d13f5b6ac01d.zip |
diskio: fix name for secpercyl field, remove unused type field
Fix the name for the incorrectly named "t" (track) field; it is in
fact the sectors/cylinder (secpercyl) field. Furthermore, remove the
completely unused "type" field... right now the pointer to the
rdwr_sectors field acts as a proxy, and if we need more complex stuff
in the future it is probably better handled by pointing to an ops
structure.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'core/include/fs.h')
-rw-r--r-- | core/include/fs.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/include/fs.h b/core/include/fs.h index da247a98..ecd148da 100644 --- a/core/include/fs.h +++ b/core/include/fs.h @@ -116,8 +116,6 @@ struct file { struct inode *inode; /* The file-specific information */ }; -enum dev_type {CHS, EDD}; - /* * Struct device contains: * the pointer points to the disk structure, |