/* SPDX-License-Identifier: GPL-2.0 */1/*2* scsicam.h - SCSI CAM support functions, use for HDIO_GETGEO, etc.3*4* Copyright 1993, 1994 Drew Eckhardt5* Visionary Computing6* (Unix and Linux consulting and custom programming)7* [email protected]8* +1 (303) 786-79759*10* For more information, please consult the SCSI-CAM draft.11*/1213#ifndef SCSICAM_H14#define SCSICAM_H15int scsicam_bios_param(struct block_device *bdev, sector_t capacity, int *ip);16bool scsi_partsize(struct block_device *bdev, sector_t capacity, int geom[3]);17unsigned char *scsi_bios_ptable(struct block_device *bdev);18#endif /* def SCSICAM_H */192021