Commit 6242ecae authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman
Browse files

staging: vt6656: struct vnt_private replace byRFType with rf_type



Remove camel case

Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f1945a15
Loading
Loading
Loading
Loading
+12 −12
Original line number Diff line number Diff line
@@ -396,14 +396,14 @@ int vnt_vt3184_init(struct vnt_private *priv)

	priv->byZoneType = priv->abyEEPROM[EEP_OFS_ZONETYPE];

	priv->byRFType = priv->abyEEPROM[EEP_OFS_RFTYPE];
	priv->rf_type = priv->abyEEPROM[EEP_OFS_RFTYPE];

	dev_dbg(&priv->usb->dev, "Zone Type %x\n", priv->byZoneType);

	dev_dbg(&priv->usb->dev, "RF Type %d\n", priv->byRFType);
	dev_dbg(&priv->usb->dev, "RF Type %d\n", priv->rf_type);

	if ((priv->byRFType == RF_AL2230) ||
				(priv->byRFType == RF_AL2230S)) {
	if ((priv->rf_type == RF_AL2230) ||
				(priv->rf_type == RF_AL2230S)) {
		priv->byBBRxConf = vnt_vt3184_al2230[10];
		length = sizeof(vnt_vt3184_al2230);
		addr = vnt_vt3184_al2230;
@@ -418,7 +418,7 @@ int vnt_vt3184_init(struct vnt_private *priv)
		priv->ldBmThreshold[1] = -48;
		priv->ldBmThreshold[2] = 0;
		priv->ldBmThreshold[3] = 0;
	} else if (priv->byRFType == RF_AIROHA7230) {
	} else if (priv->rf_type == RF_AIROHA7230) {
		priv->byBBRxConf = vnt_vt3184_al2230[10];
		length = sizeof(vnt_vt3184_al2230);
		addr = vnt_vt3184_al2230;
@@ -435,8 +435,8 @@ int vnt_vt3184_init(struct vnt_private *priv)
		priv->ldBmThreshold[1] = -48;
		priv->ldBmThreshold[2] = 0;
		priv->ldBmThreshold[3] = 0;
	} else if ((priv->byRFType == RF_VT3226) ||
			(priv->byRFType == RF_VT3226D0)) {
	} else if ((priv->rf_type == RF_VT3226) ||
			(priv->rf_type == RF_VT3226D0)) {
		priv->byBBRxConf = vnt_vt3184_vt3226d0[10];
		length = sizeof(vnt_vt3184_vt3226d0);
		addr = vnt_vt3184_vt3226d0;
@@ -454,7 +454,7 @@ int vnt_vt3184_init(struct vnt_private *priv)
		/* Fix VT3226 DFC system timing issue */
		vnt_mac_reg_bits_on(priv, MAC_REG_SOFTPWRCTL2,
				    SOFTPWRCTL_RFLEOPT);
	} else if (priv->byRFType == RF_VT3342A0) {
	} else if (priv->rf_type == RF_VT3342A0) {
		priv->byBBRxConf = vnt_vt3184_vt3226d0[10];
		length = sizeof(vnt_vt3184_vt3226d0);
		addr = vnt_vt3184_vt3226d0;
@@ -486,12 +486,12 @@ int vnt_vt3184_init(struct vnt_private *priv)
	vnt_control_out(priv, MESSAGE_TYPE_WRITE, 0,
		MESSAGE_REQUEST_BBAGC, length_agc, array);

	if ((priv->byRFType == RF_VT3226) ||
		(priv->byRFType == RF_VT3342A0)) {
	if ((priv->rf_type == RF_VT3226) ||
		(priv->rf_type == RF_VT3342A0)) {
		vnt_control_out_u8(priv, MESSAGE_REQUEST_MACREG,
						MAC_REG_ITRTMSET, 0x23);
		vnt_mac_reg_bits_on(priv, MAC_REG_PAPEDELAY, 0x01);
	} else if (priv->byRFType == RF_VT3226D0) {
	} else if (priv->rf_type == RF_VT3226D0) {
		vnt_control_out_u8(priv, MESSAGE_REQUEST_MACREG,
						MAC_REG_ITRTMSET, 0x11);
		vnt_mac_reg_bits_on(priv, MAC_REG_PAPEDELAY, 0x01);
@@ -586,7 +586,7 @@ void vnt_update_pre_ed_threshold(struct vnt_private *priv, int scanning)
	u8 cr_201 = 0x0, cr_206 = 0x0;
	u8 ed_inx = priv->byBBPreEDIndex;

	switch (priv->byRFType) {
	switch (priv->rf_type) {
	case RF_AL2230:
	case RF_AL2230S:
	case RF_AIROHA7230:
+6 −6
Original line number Diff line number Diff line
@@ -409,7 +409,7 @@ void vnt_update_ifs(struct vnt_private *priv)
	priv->uCwMax = C_CWMAX;
	priv->uEIFS = C_EIFS;

	switch (priv->byRFType) {
	switch (priv->rf_type) {
	case RF_VT3226D0:
		if (priv->byBBType != BB_TYPE_11B) {
			priv->uSIFS -= 1;
@@ -734,7 +734,7 @@ int vnt_radio_power_off(struct vnt_private *priv)
{
	int ret = true;

	switch (priv->byRFType) {
	switch (priv->rf_type) {
	case RF_AL2230:
	case RF_AL2230S:
	case RF_AIROHA7230:
@@ -775,7 +775,7 @@ int vnt_radio_power_on(struct vnt_private *priv)

	vnt_mac_reg_bits_on(priv, MAC_REG_HOSTCR, HOSTCR_RXON);

	switch (priv->byRFType) {
	switch (priv->rf_type) {
	case RF_AL2230:
	case RF_AL2230S:
	case RF_AIROHA7230:
@@ -794,7 +794,7 @@ int vnt_radio_power_on(struct vnt_private *priv)

void vnt_set_bss_mode(struct vnt_private *priv)
{
	if (priv->byRFType == RF_AIROHA7230 && priv->byBBType == BB_TYPE_11A)
	if (priv->rf_type == RF_AIROHA7230 && priv->byBBType == BB_TYPE_11A)
		vnt_mac_set_bb_type(priv, BB_TYPE_11G);
	else
		vnt_mac_set_bb_type(priv, priv->byBBType);
@@ -812,7 +812,7 @@ void vnt_set_bss_mode(struct vnt_private *priv)
	vnt_set_rspinf(priv, (u8)priv->byBBType);

	if (priv->byBBType == BB_TYPE_11A) {
		if (priv->byRFType == RF_AIROHA7230) {
		if (priv->rf_type == RF_AIROHA7230) {
			priv->abyBBVGA[0] = 0x20;

			vnt_control_out_u8(priv, MESSAGE_REQUEST_BBREG,
@@ -822,7 +822,7 @@ void vnt_set_bss_mode(struct vnt_private *priv)
		priv->abyBBVGA[2] = 0x10;
		priv->abyBBVGA[3] = 0x10;
	} else {
		if (priv->byRFType == RF_AIROHA7230) {
		if (priv->rf_type == RF_AIROHA7230) {
			priv->abyBBVGA[0] = 0x1c;

			vnt_control_out_u8(priv, MESSAGE_REQUEST_BBREG,
+1 −1
Original line number Diff line number Diff line
@@ -146,7 +146,7 @@ void vnt_init_bands(struct vnt_private *priv)
	struct ieee80211_channel *ch;
	int i;

	switch (priv->byRFType) {
	switch (priv->rf_type) {
	case RF_AIROHA7230:
	case RF_VT3342A0:
	default:
+1 −1
Original line number Diff line number Diff line
@@ -301,7 +301,7 @@ struct vnt_private {
	/* Version control */
	u16 firmware_version;
	u8 local_id;
	u8 byRFType;
	u8 rf_type;
	u8 byBBRxConf;

	u8 byZoneType;
+2 −2
Original line number Diff line number Diff line
@@ -290,10 +290,10 @@ static int device_init_registers(struct vnt_private *priv)
	priv->byBBType = BB_TYPE_11G;

	/* get RFType */
	priv->byRFType = init_rsp->rf_type;
	priv->rf_type = init_rsp->rf_type;

	/* load vt3266 calibration parameters in EEPROM */
	if (priv->byRFType == RF_VT3226D0) {
	if (priv->rf_type == RF_VT3226D0) {
		if ((priv->abyEEPROM[EEP_OFS_MAJOR_VER] == 0x1) &&
		    (priv->abyEEPROM[EEP_OFS_MINOR_VER] >= 0x4)) {

Loading