Normalize play_msf changes with 386bsd patch.
This commit is contained in:
parent
2a1d8bfc2b
commit
67dfce6728
|
@ -13,7 +13,7 @@
|
||||||
* on the understanding that TFS is not responsible for the correct
|
* on the understanding that TFS is not responsible for the correct
|
||||||
* functioning of this software in any circumstances.
|
* functioning of this software in any circumstances.
|
||||||
*
|
*
|
||||||
* $Id: cd.c,v 1.17 1993/08/04 17:26:23 brezak Exp $
|
* $Id: cd.c,v 1.18 1993/08/04 19:33:44 brezak Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define SPLCD splbio
|
#define SPLCD splbio
|
||||||
|
@ -710,12 +710,12 @@ cdioctl(dev_t dev, int cmd, caddr_t addr, int flag)
|
||||||
if(error = cd_set_mode(unit,&data))
|
if(error = cd_set_mode(unit,&data))
|
||||||
break;
|
break;
|
||||||
return(cd_play_msf(unit
|
return(cd_play_msf(unit
|
||||||
,args->start.minute
|
,args->start_m
|
||||||
,args->start.second
|
,args->start_s
|
||||||
,args->start.frame
|
,args->start_f
|
||||||
,args->end.minute
|
,args->end_m
|
||||||
,args->end.second
|
,args->end_s
|
||||||
,args->end.frame
|
,args->end_f
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -1189,7 +1189,7 @@ int unit,strack,sindex,etrack,eindex;
|
||||||
return(retval);
|
return(retval);
|
||||||
}
|
}
|
||||||
/*******************************************************\
|
/*******************************************************\
|
||||||
* Get scsi driver to send a "start playing" command *
|
* Get scsi driver to send a "play msf" command *
|
||||||
\*******************************************************/
|
\*******************************************************/
|
||||||
cd_play_msf(unit,sm,ss,sf,em,es,ef)
|
cd_play_msf(unit,sm,ss,sf,em,es,ef)
|
||||||
int unit;
|
int unit;
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
* on the understanding that TFS is not responsible for the correct
|
* on the understanding that TFS is not responsible for the correct
|
||||||
* functioning of this software in any circumstances.
|
* functioning of this software in any circumstances.
|
||||||
*
|
*
|
||||||
* $Id: cd.c,v 1.17 1993/08/04 17:26:23 brezak Exp $
|
* $Id: cd.c,v 1.18 1993/08/04 19:33:44 brezak Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define SPLCD splbio
|
#define SPLCD splbio
|
||||||
|
@ -710,12 +710,12 @@ cdioctl(dev_t dev, int cmd, caddr_t addr, int flag)
|
||||||
if(error = cd_set_mode(unit,&data))
|
if(error = cd_set_mode(unit,&data))
|
||||||
break;
|
break;
|
||||||
return(cd_play_msf(unit
|
return(cd_play_msf(unit
|
||||||
,args->start.minute
|
,args->start_m
|
||||||
,args->start.second
|
,args->start_s
|
||||||
,args->start.frame
|
,args->start_f
|
||||||
,args->end.minute
|
,args->end_m
|
||||||
,args->end.second
|
,args->end_s
|
||||||
,args->end.frame
|
,args->end_f
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -1189,7 +1189,7 @@ int unit,strack,sindex,etrack,eindex;
|
||||||
return(retval);
|
return(retval);
|
||||||
}
|
}
|
||||||
/*******************************************************\
|
/*******************************************************\
|
||||||
* Get scsi driver to send a "start playing" command *
|
* Get scsi driver to send a "play msf" command *
|
||||||
\*******************************************************/
|
\*******************************************************/
|
||||||
cd_play_msf(unit,sm,ss,sf,em,es,ef)
|
cd_play_msf(unit,sm,ss,sf,em,es,ef)
|
||||||
int unit;
|
int unit;
|
||||||
|
|
Loading…
Reference in New Issue