diff options
| author | Ondrej Zary <[email protected]> | 2023-02-18 23:01:29 +0100 |
|---|---|---|
| committer | Damien Le Moal <[email protected]> | 2023-03-23 10:29:25 +0900 |
| commit | 3a7474ba54ef29233af3de8b1f97ec006c2f902a (patch) | |
| tree | 52f60c0d8f3206b9ecbbcbd046d3b4fb7e73fd5e /include/linux | |
| parent | 882ff0ca354ada5f52e26d74039b2210b3070dcc (diff) | |
ata: pata_parport: remove verbose parameter from log_adapter()
verbose parameter of log_adapter() is unused, 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 381b4d0e3574..033cabede51c 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, int verbose); + void (*log_adapter)(struct pi_adapter *pi, char *scratch); int (*init_proto)(struct pi_adapter *pi); void (*release_proto)(struct pi_adapter *pi); |