Lines Matching refs:ControllerProcEntry
6583 struct proc_dir_entry *ControllerProcEntry; in DAC960_CreateProcEntries() local
6592 ControllerProcEntry = proc_mkdir(Controller->ControllerName, in DAC960_CreateProcEntries()
6594 …proc_create_data("initial_status", 0, ControllerProcEntry, &dac960_initial_status_proc_fops, Contr… in DAC960_CreateProcEntries()
6595 …proc_create_data("current_status", 0, ControllerProcEntry, &dac960_current_status_proc_fops, Contr… in DAC960_CreateProcEntries()
6596 …proc_create_data("user_command", S_IWUSR | S_IRUSR, ControllerProcEntry, &dac960_user_command_proc… in DAC960_CreateProcEntries()
6597 Controller->ControllerProcEntry = ControllerProcEntry; in DAC960_CreateProcEntries()
6608 if (Controller->ControllerProcEntry == NULL) in DAC960_DestroyProcEntries()
6610 remove_proc_entry("initial_status", Controller->ControllerProcEntry); in DAC960_DestroyProcEntries()
6611 remove_proc_entry("current_status", Controller->ControllerProcEntry); in DAC960_DestroyProcEntries()
6612 remove_proc_entry("user_command", Controller->ControllerProcEntry); in DAC960_DestroyProcEntries()
6614 Controller->ControllerProcEntry = NULL; in DAC960_DestroyProcEntries()