diff options
| author | Ondrej Zary <[email protected]> | 2023-02-18 23:01:30 +0100 |
|---|---|---|
| committer | Damien Le Moal <[email protected]> | 2023-03-23 10:29:25 +0900 |
| commit | 5b77db9ccff444ddd3755e43b7bfa8782a5ac125 (patch) | |
| tree | b1c88c1b2c449b520fc4df8d606ac1f8316f4325 /include/linux | |
| parent | 3a7474ba54ef29233af3de8b1f97ec006c2f902a (diff) | |
ata: pata_parport: remove scratch parameter from log_adapter()
scratch parameter of log_adapter() is only used by bpck driver.
Remove it.
Reviewed-by: Sergey Shtylyov <[email protected]>
Signed-off-by: Ondrej Zary <[email protected]>
Signed-off-by: Damien Le Moal <[email protected]>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/pata_parport.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/pata_parport.h b/include/linux/pata_parport.h index 033cabede51c..c44d30b3e886 100644 --- a/include/linux/pata_parport.h +++ b/include/linux/pata_parport.h @@ -68,7 +68,7 @@ struct pi_protocol { int (*test_port)(struct pi_adapter *pi); int (*probe_unit)(struct pi_adapter *pi); int (*test_proto)(struct pi_adapter *pi, char *scratch, int verbose); - void (*log_adapter)(struct pi_adapter *pi, char *scratch); + void (*log_adapter)(struct pi_adapter *pi); int (*init_proto)(struct pi_adapter *pi); void (*release_proto)(struct pi_adapter *pi); |