aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ide/ide-probe.c
diff options
context:
space:
mode:
authorBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2008-12-29 14:27:36 -0500
committerBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2008-12-29 14:27:36 -0500
commit047140ae2ecf954c0c44ea27cb1ae89138671bc1 (patch)
tree61389a8dbf63842e6d3812639171d0b096ef604b /drivers/ide/ide-probe.c
parentb002415012f518e6940fabb77e35f0fb21b3640d (diff)
ide: remove inline tags from ide-probe.c
Let the compiler handle it. Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/ide-probe.c')
-rw-r--r--drivers/ide/ide-probe.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/ide/ide-probe.c b/drivers/ide/ide-probe.c
index aaefd70dbff6..6d11f180bd1f 100644
--- a/drivers/ide/ide-probe.c
+++ b/drivers/ide/ide-probe.c
@@ -110,8 +110,8 @@ static void ide_disk_init_mult_count(ide_drive_t *drive)
110 * read and parse the results. This function is run with 110 * read and parse the results. This function is run with
111 * interrupts disabled. 111 * interrupts disabled.
112 */ 112 */
113 113
114static inline void do_identify (ide_drive_t *drive, u8 cmd) 114static void do_identify(ide_drive_t *drive, u8 cmd)
115{ 115{
116 ide_hwif_t *hwif = HWIF(drive); 116 ide_hwif_t *hwif = HWIF(drive);
117 u16 *id = drive->id; 117 u16 *id = drive->id;
@@ -554,8 +554,8 @@ static void enable_nest (ide_drive_t *drive)
554 * 1 device was found 554 * 1 device was found
555 * (note: IDE_DFLAG_PRESENT might still be not set) 555 * (note: IDE_DFLAG_PRESENT might still be not set)
556 */ 556 */
557 557
558static inline u8 probe_for_drive (ide_drive_t *drive) 558static u8 probe_for_drive(ide_drive_t *drive)
559{ 559{
560 char *m; 560 char *m;
561 561