Browse Source

drm/radeon: fix typo in atom voltage table handling (si+)

Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Alex Deucher 12 years ago
parent
commit
da289525b6
1 changed files with 2 additions and 2 deletions
  1. 2 2
      drivers/gpu/drm/radeon/radeon_atombios.c

+ 2 - 2
drivers/gpu/drm/radeon/radeon_atombios.c

@@ -3168,7 +3168,7 @@ radeon_atom_is_voltage_gpio(struct radeon_device *rdev,
 			switch (crev) {
 			case 1:
 				num_indices = (size - sizeof(ATOM_COMMON_TABLE_HEADER)) /
-					sizeof(ATOM_VOLTAGE_OBJECT_INFO_V3_1);
+					sizeof(ATOM_VOLTAGE_OBJECT_V3);
 
 				for (i = 0; i < num_indices; i++) {
 					if ((voltage_info->v3.asVoltageObj[i].asGpioVoltageObj.sHeader.ucVoltageType ==
@@ -3439,7 +3439,7 @@ int radeon_atom_get_voltage_table(struct radeon_device *rdev,
 			switch (crev) {
 			case 1:
 				num_indices = (size - sizeof(ATOM_COMMON_TABLE_HEADER)) /
-					sizeof(ATOM_VOLTAGE_OBJECT_INFO_V3_1);
+					sizeof(ATOM_VOLTAGE_OBJECT_V3);
 
 				for (i = 0; i < num_indices; i++) {
 					if ((voltage_info->v3.asVoltageObj[i].asGpioVoltageObj.sHeader.ucVoltageType ==