Commit 1b0f4ce6 authored by Alan Cox's avatar Alan Cox Committed by Linus Torvalds

[PATCH] remove spare cast

parent efe021c4
...@@ -171,7 +171,7 @@ u8 ide_rate_filter (u8 mode, u8 speed) ...@@ -171,7 +171,7 @@ u8 ide_rate_filter (u8 mode, u8 speed)
BUG(); BUG();
return min(speed, speed_max[mode]); return min(speed, speed_max[mode]);
#else /* !CONFIG_BLK_DEV_IDEDMA */ #else /* !CONFIG_BLK_DEV_IDEDMA */
return min(speed, (u8)XFER_PIO_4); return min(speed, XFER_PIO_4);
#endif /* CONFIG_BLK_DEV_IDEDMA */ #endif /* CONFIG_BLK_DEV_IDEDMA */
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment