mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 19:56:18 +00:00
make ide-iops.c:SELECT_MASK() static
SELECT_MASK() can now become static. [bart: remove space between function name and open parenthesis] Signed-off-by: Adrian Bunk <bunk@kernel.org> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
This commit is contained in:
parent
4d4423caaa
commit
e0b4eb5193
2 changed files with 1 additions and 2 deletions
|
@ -95,7 +95,7 @@ void SELECT_DRIVE (ide_drive_t *drive)
|
|||
hwif->OUTB(drive->select.all, hwif->io_ports.device_addr);
|
||||
}
|
||||
|
||||
void SELECT_MASK (ide_drive_t *drive, int mask)
|
||||
static void SELECT_MASK(ide_drive_t *drive, int mask)
|
||||
{
|
||||
const struct ide_port_ops *port_ops = drive->hwif->port_ops;
|
||||
|
||||
|
|
|
@ -965,7 +965,6 @@ typedef struct ide_task_s {
|
|||
void ide_tf_dump(const char *, struct ide_taskfile *);
|
||||
|
||||
extern void SELECT_DRIVE(ide_drive_t *);
|
||||
extern void SELECT_MASK(ide_drive_t *, int);
|
||||
|
||||
extern int drive_is_ready(ide_drive_t *);
|
||||
|
||||
|
|
Loading…
Reference in a new issue