diff options
Diffstat (limited to 'drivers/gpu/drm/radeon/radeon_drv.c')
| -rw-r--r-- | drivers/gpu/drm/radeon/radeon_drv.c | 10 | 
1 files changed, 7 insertions, 3 deletions
diff --git a/drivers/gpu/drm/radeon/radeon_drv.c b/drivers/gpu/drm/radeon/radeon_drv.c index 8c1a83c6eb0..dff6cf77f95 100644 --- a/drivers/gpu/drm/radeon/radeon_drv.c +++ b/drivers/gpu/drm/radeon/radeon_drv.c @@ -65,9 +65,13 @@   *   2.22.0 - r600 only: RESOLVE_BOX allowed   *   2.23.0 - allow STRMOUT_BASE_UPDATE on RS780 and RS880   *   2.24.0 - eg only: allow MIP_ADDRESS=0 for MSAA textures + *   2.25.0 - eg+: new info request for num SE and num SH + *   2.26.0 - r600-eg: fix htile size computation + *   2.27.0 - r600-SI: Add CS ioctl support for async DMA + *   2.28.0 - r600-eg: Add MEM_WRITE packet support   */  #define KMS_DRIVER_MAJOR	2 -#define KMS_DRIVER_MINOR	24 +#define KMS_DRIVER_MINOR	28  #define KMS_DRIVER_PATCHLEVEL	0  int radeon_driver_load_kms(struct drm_device *dev, unsigned long flags);  int radeon_driver_unload_kms(struct drm_device *dev); @@ -302,8 +306,8 @@ static int radeon_kick_out_firmware_fb(struct pci_dev *pdev)  	return 0;  } -static int __devinit -radeon_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) +static int radeon_pci_probe(struct pci_dev *pdev, +			    const struct pci_device_id *ent)  {  	int ret;  |