Lines Matching refs:ControllerProcEntry
6548 struct proc_dir_entry *ControllerProcEntry; in DAC960_CreateProcEntries() local
6558 ControllerProcEntry = proc_mkdir(Controller->ControllerName, in DAC960_CreateProcEntries()
6560 proc_create_single_data("initial_status", 0, ControllerProcEntry, in DAC960_CreateProcEntries()
6562 proc_create_single_data("current_status", 0, ControllerProcEntry, in DAC960_CreateProcEntries()
6564 …proc_create_data("user_command", 0600, ControllerProcEntry, &dac960_user_command_proc_fops, Contro… in DAC960_CreateProcEntries()
6565 Controller->ControllerProcEntry = ControllerProcEntry; in DAC960_CreateProcEntries()
6576 if (Controller->ControllerProcEntry == NULL) in DAC960_DestroyProcEntries()
6578 remove_proc_entry("initial_status", Controller->ControllerProcEntry); in DAC960_DestroyProcEntries()
6579 remove_proc_entry("current_status", Controller->ControllerProcEntry); in DAC960_DestroyProcEntries()
6580 remove_proc_entry("user_command", Controller->ControllerProcEntry); in DAC960_DestroyProcEntries()
6582 Controller->ControllerProcEntry = NULL; in DAC960_DestroyProcEntries()