Trivial comment reformatting. Old style was uncommon for Linux. Signed-off-by: Jörn Engel --- drivers/mtd/maps/vmu_flash.c | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) --- maple/drivers/mtd/maps/vmu_flash.c~cu4 2008-03-24 14:55:22.000000000 +0100 +++ maple/drivers/mtd/maps/vmu_flash.c 2008-03-24 14:57:38.000000000 +0100 @@ -140,10 +140,10 @@ static int maple_vmu_read_block(unsigned partition = mpart->partition; card = mdev->private_data; - /*** - * Maple devices include a mutex to ensure packets injected into - * the wait queue are not corrupted via scans for hotplug events etc - */ + /* + * Maple devices include a mutex to ensure packets injected into + * the wait queue are not corrupted via scans for hotplug events etc + */ locking = mutex_lock_interruptible(&mdev->mq->mutex); if (locking) { printk(KERN_INFO "Maple: VMU at (%d, %d) is locked -" @@ -235,9 +235,9 @@ static int maple_vmu_write_block(unsigne mdev->mq->sendbuf = sendbuf; maple_add_packet(mdev->mq); } - /*** - * The Maple bus driver will unlock the mutex once the command - * has been processed, so we'll just sleep waiting for the unlock */ + /* + * The Maple bus driver will unlock the mutex once the command + * has been processed, so we'll just sleep waiting for the unlock */ locking = mutex_lock_interruptible(&mdev->mq->mutex); if (locking) { error = -EBUSY; @@ -592,8 +592,8 @@ static int vmu_connect(struct maple_devi test_flash_data = be32_to_cpu(mdev->devinfo.function); /* Need to count how many bits are set - to find out which - * function_data element has details of the memory card: - * using Brian Kernighan's/Peter Wegner's method */ + * function_data element has details of the memory card: + * using Brian Kernighan's/Peter Wegner's method */ for (c = 0; test_flash_data; c++) test_flash_data &= test_flash_data - 1; @@ -613,14 +613,14 @@ static int vmu_connect(struct maple_devi card->partition = 0; /* Not sure there are actually any multi-partition devices in the - * real world, but the hardware supports them, so, so will we */ + * real world, but the hardware supports them, so, so will we */ card->parts = kmalloc(sizeof(struct vmupart) * card->partitions, GFP_KERNEL); if (!card->parts) { error = -ENOMEM; goto fail_partitions; } - /*kzalloc this to ensure safe kfree-ing of NULL mparts on error*/ + /* kzalloc this to ensure safe kfree-ing of NULL mparts on error */ card->mtd = kzalloc(sizeof(struct mtd_info) * card->partitions, GFP_KERNEL); if (!card->mtd) {