You should have a README file with your driver explaining you how to install that driver. Here is the global picture:
1- Install your running kernel source.
2- Unpack the driver source code to some directory.
3- Configure, compile and install your driver.
ie:
Code:
yum install kernel-devel
tar zxf mydriver.tar.gz
cd mydriver
./configure
make
make install
Now, if you need more explanations, you should probably give more info like:
- What did you try already that did not work
- What "device driver" are you trying to install
- etc...