diff options
| author | Ondrej Zary <[email protected]> | 2023-02-18 23:01:35 +0100 |
|---|---|---|
| committer | Damien Le Moal <[email protected]> | 2023-03-23 10:29:25 +0900 |
| commit | 8d7494a06a14ce8e2d792b95f28c839367a8ebdc (patch) | |
| tree | 3da67e624c2a0b83a424a4628fa20bf793a687bd /include/linux | |
| parent | a36a7068274fc9c4f2a4ea97156425b609f276ca (diff) | |
ata: pata_parport: remove verbose parameter from test_proto()
verbose parameter of test_proto() is now 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 c44d30b3e886..e45bb1896003 100644 --- a/include/linux/pata_parport.h +++ b/include/linux/pata_parport.h @@ -67,7 +67,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); + int (*test_proto)(struct pi_adapter *pi, char *scratch); void (*log_adapter)(struct pi_adapter *pi); int (*init_proto)(struct pi_adapter *pi); |