mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 19:56:18 +00:00
ide: remove inline tags from ide-probe.c
Let the compiler handle it. Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
This commit is contained in:
parent
b002415012
commit
047140ae2e
1 changed files with 4 additions and 4 deletions
|
@ -110,8 +110,8 @@ static void ide_disk_init_mult_count(ide_drive_t *drive)
|
||||||
* read and parse the results. This function is run with
|
* read and parse the results. This function is run with
|
||||||
* interrupts disabled.
|
* interrupts disabled.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static inline void do_identify (ide_drive_t *drive, u8 cmd)
|
static void do_identify(ide_drive_t *drive, u8 cmd)
|
||||||
{
|
{
|
||||||
ide_hwif_t *hwif = HWIF(drive);
|
ide_hwif_t *hwif = HWIF(drive);
|
||||||
u16 *id = drive->id;
|
u16 *id = drive->id;
|
||||||
|
@ -554,8 +554,8 @@ static void enable_nest (ide_drive_t *drive)
|
||||||
* 1 device was found
|
* 1 device was found
|
||||||
* (note: IDE_DFLAG_PRESENT might still be not set)
|
* (note: IDE_DFLAG_PRESENT might still be not set)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static inline u8 probe_for_drive (ide_drive_t *drive)
|
static u8 probe_for_drive(ide_drive_t *drive)
|
||||||
{
|
{
|
||||||
char *m;
|
char *m;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue