mirror of
https://github.com/torvalds/linux.git
synced 2024-11-12 07:01:57 +00:00
drm: drop i386 verification
Linux doesn't run on i386, anymore. See:
commit d55c5a93db
Author: H. Peter Anvin <hpa@linux.intel.com>
Date: Wed Nov 28 11:50:24 2012 -0800
x86, 386 removal: Remove CONFIG_CMPXCHG
All 486+ CPUs support CMPXCHG, so remove the fallback 386 support
code.
Furthermore, as the commit-message states, all 486+ CPUs support the
CMPXCHG instruction and thus even legacy DRM can run fine.
Drop the now superfluous "x86 == 3" check.
Signed-off-by: David Herrmann <dh.herrmann@gmail.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
344f4b0f4c
commit
1eac887772
@ -157,10 +157,6 @@ out_unlock:
|
|||||||
*/
|
*/
|
||||||
static int drm_cpu_valid(void)
|
static int drm_cpu_valid(void)
|
||||||
{
|
{
|
||||||
#if defined(__i386__)
|
|
||||||
if (boot_cpu_data.x86 == 3)
|
|
||||||
return 0; /* No cmpxchg on a 386 */
|
|
||||||
#endif
|
|
||||||
#if defined(__sparc__) && !defined(__sparc_v9__)
|
#if defined(__sparc__) && !defined(__sparc_v9__)
|
||||||
return 0; /* No cmpxchg before v9 sparc. */
|
return 0; /* No cmpxchg before v9 sparc. */
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user