This is not required as cache code already checks driver id as well.
+2013-12-16 Vladimir Serbinenko <phcoder@gmail.com>
+
+ Remove practice of assigning random const pointers to device id.
+
+ This is not required as cache code already checks driver id as well.
+
2013-12-16 Vladimir Serbinenko <phcoder@gmail.com>
* include/grub/x86_64/types.h: Define sizeof (long) as 4 when compiling
return grub_error (GRUB_ERR_UNKNOWN_DEVICE, "not a host disk");
disk->total_sectors = 0;
- disk->id = (unsigned long) "host";
+ disk->id = 0;
disk->data = 0;
disk->total_sectors = memdisk_size / GRUB_DISK_SECTOR_SIZE;
disk->max_agglomerate = GRUB_DISK_MAX_MAX_AGGLOMERATE;
- disk->id = (unsigned long) "mdsk";
+ disk->id = 0;
return GRUB_ERR_NONE;
}
disk->total_sectors = cbfsdisk_size / GRUB_DISK_SECTOR_SIZE;
disk->max_agglomerate = GRUB_DISK_MAX_MAX_AGGLOMERATE;
- disk->id = (unsigned long) "cbfs";
+ disk->id = 0;
return GRUB_ERR_NONE;
}
return grub_error (GRUB_ERR_UNKNOWN_DEVICE, "not a procfs disk");
disk->total_sectors = 0;
- disk->id = (unsigned long) "proc";
+ disk->id = 0;
disk->data = 0;