Unable to compile RealTek RTL8188CE driver on Ubuntu 13.10

Apparently the Linux headers have changed enough since 13.04 to break this driver. After many days of work I have finally fixed the compile issues and gotten the driver working. You can find the fixed driver, along with the detailing of all of my changes from the original version released by Realtek, at my Github repo here: https://github.com/FreedomBen/rtl8188ce-linux-driver

For those who are interested, the biggest changes were the removal of create_proc_entry() and other related functions that put debugging information into the /proc directory. I have not yet converted the code to use the replacement functions, so as of now the debug info will not be reported. This does not in any way affect the performance of the driver though.

The other big change was the restructuring of struct ieee80211_hw, struct ieee80211_conf, and the addition of struct cfg80211_chan_def which replaced what used to be the channel member of ieee80211_conf.

There is also a new helper function cfg80211_get_chandef_type() for retrieving channel type instead of the old direct method.