Subversion Repositories Kolibri OS

Rev

Rev 6938 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6938 Rev 7146
Line 349... Line 349...
349
		rdev->have_disp_power_ref = false;
349
		rdev->have_disp_power_ref = false;
350
	}
350
	}
Line 351... Line 351...
351
 
351
 
352
	/* drop the power reference we got coming in here */
352
	/* drop the power reference we got coming in here */
-
 
353
//   pm_runtime_put_autosuspend(dev->dev);
353
//   pm_runtime_put_autosuspend(dev->dev);
354
 
354
	return ret;
355
	return ret;
355
}
356
}
356
static const struct drm_crtc_funcs radeon_crtc_funcs = {
357
static const struct drm_crtc_funcs radeon_crtc_funcs = {
357
    .cursor_set = NULL,
358
    .cursor_set = NULL,
Line 1324... Line 1325...
1324
 
1325
 
1325
void radeon_modeset_fini(struct radeon_device *rdev)
1326
void radeon_modeset_fini(struct radeon_device *rdev)
1326
{
1327
{
Line -... Line 1328...
-
 
1328
	kfree(rdev->mode_info.bios_hardcoded_edid);
-
 
1329
 
-
 
1330
	/* free i2c buses */
1327
	kfree(rdev->mode_info.bios_hardcoded_edid);
1331
	radeon_i2c_fini(rdev);
1328
 
1332
 
1329
	if (rdev->mode_info.mode_config_initialized) {
1333
	if (rdev->mode_info.mode_config_initialized) {
1330
//		radeon_afmt_fini(rdev);
1334
//		radeon_afmt_fini(rdev);
1331
//       drm_kms_helper_poll_fini(rdev->ddev);
1335
//       drm_kms_helper_poll_fini(rdev->ddev);
1332
//       radeon_hpd_fini(rdev);
1336
//       radeon_hpd_fini(rdev);
1333
//       drm_mode_config_cleanup(rdev->ddev);
1337
//       drm_mode_config_cleanup(rdev->ddev);
1334
		rdev->mode_info.mode_config_initialized = false;
-
 
1335
	}
-
 
1336
	/* free i2c buses */
1338
		rdev->mode_info.mode_config_initialized = false;
Line 1337... Line 1339...
1337
	radeon_i2c_fini(rdev);
1339
	}
1338
}
1340
}
1339
 
1341