mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-04-02 02:49:12 +00:00
hddtemp: Add missing prototype for ata_get_powermode in sata.c
Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit fdb8bc38b1e959006a0a5d98c84c8443c785e49d) Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
This commit is contained in:
parent
0b02a2b912
commit
e7021d8f78
@ -0,0 +1,33 @@
|
||||
From c5ca31940d1d1889ef2cc6974c18ff24ab406748 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Wed, 31 Aug 2022 16:42:23 -0700
|
||||
Subject: [PATCH] sata.c: Declare ata_get_powermode prototype
|
||||
|
||||
Fixes build warnings/errors
|
||||
|
||||
sata.c:127:10: error: call to undeclared function 'ata_get_powermode'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
|
||||
| switch(ata_get_powermode(dsk->fd))
|
||||
|
||||
Upstream-Status: Pending
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
src/sata.c | 3 ++-
|
||||
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/sata.c b/src/sata.c
|
||||
index d67621f..4172245 100644
|
||||
--- a/src/sata.c
|
||||
+++ b/src/sata.c
|
||||
@@ -52,7 +52,8 @@
|
||||
(((u16)(__x) & (u16)0xff00U) >> 8) )); \
|
||||
})
|
||||
|
||||
-
|
||||
+extern enum e_powermode ata_get_powermode(int device);
|
||||
+
|
||||
static int sata_probe(int device) {
|
||||
int bus_num;
|
||||
unsigned char cmd[4] = { WIN_IDENTIFY, 0, 0, 1 };
|
||||
--
|
||||
2.37.3
|
||||
|
||||
@ -10,6 +10,7 @@ SRC_URI = "${SAVANNAH_NONGNU_MIRROR}/hddtemp/hddtemp-0.3-beta15.tar.bz2 \
|
||||
file://hddtemp-0.3-beta15-autodetect-717479.patch \
|
||||
file://0001-backtrace-Replace-struct-ucontext-with-ucontext_t.patch \
|
||||
file://0001-configure.ac-Rename-to-configure.ac-and-use-external.patch \
|
||||
file://0001-sata.c-Declare-ata_get_powermode-prototype.patch \
|
||||
file://hddtemp.db \
|
||||
file://init \
|
||||
"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user