/*1* scsicam.h - SCSI CAM support functions, use for HDIO_GETGEO, etc.2*3* Copyright 1993, 1994 Drew Eckhardt4* Visionary Computing5* (Unix and Linux consulting and custom programming)6* [email protected]7* +1 (303) 786-79758*9* For more information, please consult the SCSI-CAM draft.10*/1112#ifndef SCSICAM_H13#define SCSICAM_H14extern int scsicam_bios_param (struct block_device *bdev, sector_t capacity, int *ip);15extern int scsi_partsize(unsigned char *buf, unsigned long capacity,16unsigned int *cyls, unsigned int *hds, unsigned int *secs);17extern unsigned char *scsi_bios_ptable(struct block_device *bdev);18#endif /* def SCSICAM_H */192021