diff options
author | Ondrej Zary <linux@zary.sk> | 2023-02-18 23:01:38 +0100 |
---|---|---|
committer | Damien Le Moal <damien.lemoal@opensource.wdc.com> | 2023-03-23 10:29:25 +0900 |
commit | fe027ff984c61f4ac5e79823fef30ced4f46d23d (patch) | |
tree | 674957edeb486b721e4154b502e05349e7a541b8 /drivers/ata/pata_parport/on20.c | |
parent | 01985290f61aecd0de191476f77b5dd6b2d15971 (diff) | |
download | linux-fe027ff984c61f4ac5e79823fef30ced4f46d23d.tar.gz linux-fe027ff984c61f4ac5e79823fef30ced4f46d23d.tar.bz2 linux-fe027ff984c61f4ac5e79823fef30ced4f46d23d.zip |
ata: pata_parport: move pata_parport.h to drivers/ata/pata_parport
Now that paride is gone, pata_parport.h does not need to be in
include/linux. Move it to drivers/ata/pata_parport.
Reviewed-by: Sergey Shtylyov <s.shtylyov@omp.ru>
Signed-off-by: Ondrej Zary <linux@zary.sk>
Signed-off-by: Damien Le Moal <damien.lemoal@opensource.wdc.com>
Diffstat (limited to 'drivers/ata/pata_parport/on20.c')
-rw-r--r-- | drivers/ata/pata_parport/on20.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/ata/pata_parport/on20.c b/drivers/ata/pata_parport/on20.c index 6956b91efb47..276ace12d490 100644 --- a/drivers/ata/pata_parport/on20.c +++ b/drivers/ata/pata_parport/on20.c @@ -13,8 +13,7 @@ #include <linux/types.h> #include <linux/wait.h> #include <asm/io.h> - -#include <linux/pata_parport.h> +#include "pata_parport.h" #define op(f) w2(4);w0(f);w2(5);w2(0xd);w2(5);w2(0xd);w2(5);w2(4); #define vl(v) w2(4);w0(v);w2(5);w2(7);w2(5);w2(4); |