aboutsummaryrefslogtreecommitdiff
path: root/src/ata.c
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2010-01-03 17:43:37 -0500
committerKevin O'Connor <kevin@koconnor.net>2010-01-03 17:43:37 -0500
commit1ca05b0f393c0201c0e8efe87831edddb6a53532 (patch)
tree4419fdb78cba0962313f8e6bcf35d16a3401183e /src/ata.c
parentb5bb9db8425b3b463e634874e3a201a354d55ac7 (diff)
downloadseabios-hppa-1ca05b0f393c0201c0e8efe87831edddb6a53532.zip
seabios-hppa-1ca05b0f393c0201c0e8efe87831edddb6a53532.tar.gz
seabios-hppa-1ca05b0f393c0201c0e8efe87831edddb6a53532.tar.bz2
Be sure to add "void" to all function prototypes that take no args.
Omitting "void" leads to a K&R style declaration which was not intended.
Diffstat (limited to 'src/ata.c')
-rw-r--r--src/ata.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ata.c b/src/ata.c
index 90e0392..add1d67 100644
--- a/src/ata.c
+++ b/src/ata.c
@@ -990,7 +990,7 @@ init_controller(struct ata_channel_s *atachannel
// Locate and init ata controllers.
static void
-ata_init()
+ata_init(void)
{
// Scan PCI bus for ATA adapters
int count=0, pcicount=0;
@@ -1052,7 +1052,7 @@ ata_init()
}
void
-ata_setup()
+ata_setup(void)
{
if (!CONFIG_ATA)
return;