mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 21:22:39 -05:00
FS#12418 - Merge prototypes from ata-target.h files into new file ata-driver.h. After this change:
- ata.h is for users of ata.c - ata-driver.h is for functions implemented by target-specific code and used by ata.c - ata-target.h is for target-specific defines git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31182 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
d09818d745
commit
e4dbcc414b
25 changed files with 98 additions and 82 deletions
|
|
@ -25,9 +25,8 @@
|
|||
#include "system.h"
|
||||
#include "power.h"
|
||||
#include "panic.h"
|
||||
#include "ata.h"
|
||||
#include "ata-driver.h"
|
||||
#include "ata-defines.h"
|
||||
#include "ata-target.h"
|
||||
#include "ccm-imx31.h"
|
||||
#ifdef HAVE_ATA_DMA
|
||||
#include "sdma-imx31.h"
|
||||
|
|
|
|||
|
|
@ -21,6 +21,8 @@
|
|||
#ifndef ATA_TARGET_H
|
||||
#define ATA_TARGET_H
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#ifdef BOOTLOADER
|
||||
#define ATA_DRIVER_CLOSE
|
||||
#endif
|
||||
|
|
@ -46,12 +48,8 @@
|
|||
#define ATA_COMMAND ATA_DRIVE_COMMAND
|
||||
#define ATA_CONTROL ATA_DRIVE_CONTROL
|
||||
|
||||
void ata_reset(void);
|
||||
void ata_device_init(void);
|
||||
bool ata_is_coldstart(void);
|
||||
|
||||
#define ATA_SET_DEVICE_FEATURES
|
||||
void ata_set_pio_timings(int mode);
|
||||
#define ATA_SET_PIO_TIMING
|
||||
|
||||
#define ATA_TARGET_POLLING
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue