From: Christian Borntraeger Date: Tue, 3 Oct 2006 21:40:34 +0000 (+0200) Subject: Fix bytes <-> kilobytes typo in Kconfig for ramdisk X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=73cf9630683e8b9f58485b75a13a21ac9ff33aef;p=linux-beck.git Fix bytes <-> kilobytes typo in Kconfig for ramdisk This is a small fix for a typo in Kconfig. The default value for the block size is 1024 bytes not 1024 kilobytes. Signed-off-by: Christian Borntraeger Signed-off-by: Adrian Bunk --- diff --git a/drivers/block/Kconfig b/drivers/block/Kconfig index 24ebd1ce6644..17dc22282e14 100644 --- a/drivers/block/Kconfig +++ b/drivers/block/Kconfig @@ -406,7 +406,7 @@ config BLK_DEV_RAM_BLOCKSIZE depends on BLK_DEV_RAM default "1024" help - The default value is 1024 kilobytes. PAGE_SIZE is a much more + The default value is 1024 bytes. PAGE_SIZE is a much more efficient choice however. The default is kept to ensure initrd setups function - apparently needed by the rd_load_image routine that supposes the filesystem in the image uses a 1024 blocksize.