@@ -28,8 +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 int esdrv_df_null ();
32- static s64 esdrv_df_null_long ();
3331static int
3432esioctl2_func_1 (iomanX_iop_file_t * f , int cmd , void * arg , unsigned int arglen , void * buf , unsigned int buflen );
3533static int
@@ -221,33 +219,33 @@ struct DevctlCmdTbl_t
221219};
222220
223221static iomanX_iop_device_ops_t DvrFuncTbl = {
224- & esdrv_df_init ,
225- & esdrv_df_exit ,
226- ( void * ) & esdrv_df_null ,
227- ( void * ) & esdrv_df_null ,
228- ( void * ) & esdrv_df_null ,
229- ( void * ) & esdrv_df_null ,
230- ( void * ) & esdrv_df_null ,
231- ( void * ) & esdrv_df_null ,
232- & esdrv_df_ioctl ,
233- ( void * ) & esdrv_df_null ,
234- ( void * ) & esdrv_df_null ,
235- ( void * ) & esdrv_df_null ,
236- ( void * ) & esdrv_df_null ,
237- ( void * ) & esdrv_df_null ,
238- ( void * ) & esdrv_df_null ,
239- ( void * ) & esdrv_df_null ,
240- ( void * ) & esdrv_df_null ,
241- ( void * ) & esdrv_df_null ,
242- ( void * ) & esdrv_df_null ,
243- ( void * ) & esdrv_df_null ,
244- ( void * ) & esdrv_df_null ,
245- ( void * ) & esdrv_df_null ,
246- ( void * ) & esdrv_df_null_long ,
247- & esdrv_df_devctl ,
248- ( void * ) & esdrv_df_null ,
249- ( void * ) & esdrv_df_null ,
250- & 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
251249};
252250static iomanX_iop_device_t ESDRV = {
253251 .name = "es_drv" ,
@@ -372,16 +370,6 @@ esdrv_df_ioctl2(iomanX_iop_file_t *f, int cmd, void *arg, unsigned int arglen, v
372370 return - EINVAL ;
373371}
374372
375- static int esdrv_df_null ()
376- {
377- return - EUNSUP ;
378- }
379-
380- static s64 esdrv_df_null_long ()
381- {
382- return - EUNSUP ;
383- }
384-
385373static void EsAcsSetAaryptorIoMode (void )
386374{
387375 es_regs -> r_es0C = 0 ;
0 commit comments