mirror of
https://github.com/ipxe/ipxe
synced 2025-12-22 04:50:25 +03:00
Kill off job::start() (it was only ever added as part of an aborted
attempt at triggering TCP-related protocols to start).
This commit is contained in:
@@ -43,10 +43,6 @@ void job_done ( struct job_interface *job, int rc ) {
|
||||
*
|
||||
*/
|
||||
|
||||
void ignore_job_start ( struct job_interface *job __unused ) {
|
||||
/* Nothing to do */
|
||||
}
|
||||
|
||||
void ignore_job_done ( struct job_interface *job __unused, int rc __unused ) {
|
||||
/* Nothing to do */
|
||||
}
|
||||
@@ -62,7 +58,6 @@ void ignore_job_progress ( struct job_interface *job __unused,
|
||||
|
||||
/** Null job control interface operations */
|
||||
struct job_interface_operations null_job_ops = {
|
||||
.start = ignore_job_start,
|
||||
.done = ignore_job_done,
|
||||
.kill = ignore_job_kill,
|
||||
.progress = ignore_job_progress,
|
||||
|
||||
Reference in New Issue
Block a user