@@ -28,7 +28,6 @@ static int esdrv_df_devctl(
2828 iomanX_iop_file_t * f , const char * name , int cmd , void * arg , unsigned int arglen , void * buf , unsigned int buflen );
2929static int
3030esdrv_df_ioctl2 (iomanX_iop_file_t * f , int cmd , void * arg , unsigned int arglen , void * buf , unsigned int buflen );
31- static s64 esdrv_df_null_long ();
3231static int
3332esioctl2_func_1 (iomanX_iop_file_t * f , int cmd , void * arg , unsigned int arglen , void * buf , unsigned int buflen );
3433static int
@@ -220,33 +219,33 @@ struct DevctlCmdTbl_t
220219};
221220
222221static iomanX_iop_device_ops_t DvrFuncTbl = {
223- & esdrv_df_init ,
224- & esdrv_df_exit ,
225- NOT_SUPPORTED ,
226- NOT_SUPPORTED ,
227- NOT_SUPPORTED ,
228- NOT_SUPPORTED ,
229- NOT_SUPPORTED ,
230- NOT_SUPPORTED ,
231- & esdrv_df_ioctl ,
232- NOT_SUPPORTED ,
233- NOT_SUPPORTED ,
234- NOT_SUPPORTED ,
235- NOT_SUPPORTED ,
236- NOT_SUPPORTED ,
237- NOT_SUPPORTED ,
238- NOT_SUPPORTED ,
239- NOT_SUPPORTED ,
240- NOT_SUPPORTED ,
241- NOT_SUPPORTED ,
242- NOT_SUPPORTED ,
243- NOT_SUPPORTED ,
244- NOT_SUPPORTED ,
245- ( void * ) & esdrv_df_null_long ,
246- & esdrv_df_devctl ,
247- NOT_SUPPORTED ,
248- NOT_SUPPORTED ,
249- & esdrv_df_ioctl2 ,
222+ & esdrv_df_init , // init
223+ & esdrv_df_exit , // deinit
224+ NOT_SUPPORTED , // format
225+ NOT_SUPPORTED , // open
226+ NOT_SUPPORTED , // close
227+ NOT_SUPPORTED , // read
228+ NOT_SUPPORTED , // write
229+ NOT_SUPPORTED , // lseek
230+ & esdrv_df_ioctl , // ioctl
231+ NOT_SUPPORTED , // remove
232+ NOT_SUPPORTED , // mkdir
233+ NOT_SUPPORTED , // rmdir
234+ NOT_SUPPORTED , // dopen
235+ NOT_SUPPORTED , // dclose
236+ NOT_SUPPORTED , // dread
237+ NOT_SUPPORTED , // getstat
238+ NOT_SUPPORTED , // chstat
239+ NOT_SUPPORTED , // rename
240+ NOT_SUPPORTED , // chdir
241+ NOT_SUPPORTED , // sync
242+ NOT_SUPPORTED , // mount
243+ NOT_SUPPORTED , // umount
244+ NOT_SUPPORTED_S64 , // lseek64
245+ & esdrv_df_devctl , // devctl
246+ NOT_SUPPORTED , // symlink
247+ NOT_SUPPORTED , // readlink
248+ & esdrv_df_ioctl2 , // ioctl2
250249};
251250static iomanX_iop_device_t ESDRV = {
252251 .name = "es_drv" ,
@@ -371,11 +370,6 @@ esdrv_df_ioctl2(iomanX_iop_file_t *f, int cmd, void *arg, unsigned int arglen, v
371370 return - EINVAL ;
372371}
373372
374- static s64 esdrv_df_null_long ()
375- {
376- return - EUNSUP ;
377- }
378-
379373static void EsAcsSetAaryptorIoMode (void )
380374{
381375 es_regs -> r_es0C = 0 ;
0 commit comments