Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 321061 | Differences between
and this patch

Collapse All | Expand All

(-)kernel/os-agp.c (-2 / +2 lines)
Lines 168-175 Link Here
168
    agp_info.mode &= (0xff000000 | agp_mode);
168
    agp_info.mode &= (0xff000000 | agp_mode);
169
    NV_AGPGART_BACKEND_ENABLE(drm_agp_p, nvl->agp_bridge, agp_info.mode);
169
    NV_AGPGART_BACKEND_ENABLE(drm_agp_p, nvl->agp_bridge, agp_info.mode);
170
170
171
    *ap_phys_base = agp_info.aper_base;
171
    *ap_phys_base = (unsigned)agp_info.aper_base;
172
    *ap_limit = (agp_info.aper_size << 20) - 1;
172
    *ap_limit = (unsigned)(agp_info.aper_size << 20) - 1;
173
173
174
    return RM_OK;
174
    return RM_OK;
175
175

Return to bug 321061