intel: Remove GEN_IS_* macros
Removing these macros make the version checking consistent across drivers. It also helps to simplify many version checks by combining multiple checks into one. For example GEN_GEN >= 8 || GEN_VERSIONx10 == 75 is replaced by GEN_VERSIONx10 >= 75.