Well after some searching I came to know that , your problem belongs to Kernel.All you need to is simply update your Kernel, Source .
So you have to update your Kernel to 3.9, and Instructions are
Open your terminal and then paste this command to make sure that your system is up to date.
sudo apt-get update && sudo apt-get dist-upgrade && sudo apt-get autoremove
Then
after doing update , restart your system to apply the changes and then change to tmp directory.
cd /tmp
Then for 32-bit Ubuntu Kernel is
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.9-rc8-raring/linux-headers-3.9.0-030900rc8-generic_3.9.0-030900rc8.201304211835_i386.deb http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.9-rc8-raring/linux-headers-3.9.0-030900rc8_3.9.0-030900rc8.201304211835_all.deb http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.9-rc8-raring/linux-image-3.9.0-030900rc8-generic_3.9.0-030900rc8.201304211835_i386.deb
for 64-bit
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.9-rc8-raring/linux-headers-3.9.0-030900rc8-generic_3.9.0-030900rc8.201304211835_amd64.deb http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.9-rc8-raring/linux-headers-3.9.0-030900rc8_3.9.0-030900rc8.201304211835_all.deb http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.9-rc8-raring/linux-image-3.9.0-030900rc8-generic_3.9.0-030900rc8.201304211835_amd64.deb
Then install it with
sudo dpkg -i *.deb
Then update your GRUB
sudo update-grub2
Now restart your system to apply the changes.
Source
Hope that helps.