ata: pata_ns87415: mark ns87560_tf_read static
authorArnd Bergmann <arnd@arndb.de>
Wed, 26 Jul 2023 20:33:22 +0000 (22:33 +0200)
committerDamien Le Moal <dlemoal@kernel.org>
Thu, 27 Jul 2023 23:52:42 +0000 (08:52 +0900)
commit3fc2febb0f8ffae354820c1772ec008733237cfa
tree39fc61e511f7b1245a200146731a76285c9f7ea1
parent1cfe2d28e4d50a4e3e49344ade3b28f8dc26f891
ata: pata_ns87415: mark ns87560_tf_read static

The global function triggers a warning because of the missing prototype

drivers/ata/pata_ns87415.c:263:6: warning: no previous prototype for 'ns87560_tf_read' [-Wmissing-prototypes]
  263 | void ns87560_tf_read(struct ata_port *ap, struct ata_taskfile *tf)

There are no other references to this, so just make it static.

Fixes: c4b5b7b6c4423 ("pata_ns87415: Initial cut at 87415/87560 IDE support")
Reviewed-by: Sergey Shtylyov <s.shtylyov@omp.ru>
Reviewed-by: Serge Semin <fancer.lancer@gmail.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
drivers/ata/pata_ns87415.c