umm.... no. (but i think you typo'd)
try to keep this in mind, "h" "d" "letter" "number" is how linux keeps track of items on the IDE Bus. Anything like /dev/dvd or /dev/cdrom is nothing but a symbolic link to one of those, for the purpose of making your life a little easier. So if you ever want to arrange/change them, you are free to delete the symlinks, and make your own.
to figure out what letter your dvd drive is, look at how you cabled it.
Primary Master = hda
Primary Slave = hdb
Secondary Master = hdc
Secondary Slave = hdd
Tertiary Master = hde
Tertiary Slave = hdf
and so on...
right now, your system probably has a symlink for your cdrom already (type "ls -l /dev | grep cdrom" to see)
once you understand that the /dev/dvd and whatever are just symlinks to a device, you'll see how you're free to create your own. I could make /dev/yourmom link to my porn partition.
So, Moonark you can just do this
"ls -l /dev | grep cdrom" then take the "hdX#" it puts out and type
"ln -s /dev/hdX# /dev/dvd"
I suggest you leave /dev/cdrom there, as some programs will probably expect it, and it does no hard to have the two links.
Sinister:
You would need to find out where on the IDE bus each of your drives is connected to, and then using that, determine what thier hdX# is.
From there you can make your own symlinks just like above.
bart <edit> you'll notice there is no # for a cdrom device, thats because CD's don't have partitions, so just type in the hdX sans any trailing number </edit>