diff options
| author | Cástor Muñoz <cmvidal@gmail.com> | 2016-02-13 18:28:46 +0100 |
|---|---|---|
| committer | Cástor Muñoz <cmvidal@gmail.com> | 2016-02-14 15:17:42 +0100 |
| commit | e9497dbf6d4d0e7ceead8397a736b1efc13ee120 (patch) | |
| tree | 89efe15d5dff3d94900df72b078f1eb699a1352b /firmware/export | |
| parent | 31d9084a8ce925c513abe37f0a7e9522925f7791 (diff) | |
| download | rockbox-e9497dbf6d4d0e7ceead8397a736b1efc13ee120.zip rockbox-e9497dbf6d4d0e7ceead8397a736b1efc13ee120.tar.gz rockbox-e9497dbf6d4d0e7ceead8397a736b1efc13ee120.tar.bz2 rockbox-e9497dbf6d4d0e7ceead8397a736b1efc13ee120.tar.xz | |
iPod Classic: ATA SMART updates
- Add description for attributes supported by Samsung HS081HA (80Gb)
and HS161JQ (CEATA 160Gb).
- Show error code when ata_read_smart() fails.
Change-Id: I618cc4f37d139fc90f596e2cf3a751346b27deb6
Diffstat (limited to 'firmware/export')
| -rw-r--r-- | firmware/export/ata.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/ata.h b/firmware/export/ata.h index 6f0d0b6..a1b7ab6 100644 --- a/firmware/export/ata.h +++ b/firmware/export/ata.h @@ -172,7 +172,7 @@ int ata_get_dma_mode(void); #ifdef HAVE_ATA_SMART /* Returns current S.M.A.R.T. data */ -void* ata_read_smart(void); +int ata_read_smart(struct ata_smart_values*); #endif #endif /* __ATA_H__ */ |