Commit ee1803cf authored by Dulshani Gunawardhana's avatar Dulshani Gunawardhana Committed by Greg Kroah-Hartman
Browse files

Staging/cxt1e1:Fixing foo * bar should be foo *bar



This patch fixes the variable naming  error foo * bar should be foo *bar.

Signed-off-by: default avatarDulshani Gunawardhana <dulshani.gunawardhana89@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent cd1ccce1
Loading
Loading
Loading
Loading
+11 −11
Original line number Diff line number Diff line
@@ -410,7 +410,7 @@ void init_comet(void *ci, comet_t * comet, u_int32_t port_mode, int clockmaster,
STATIC void
WrtXmtWaveform(ci_t *ci, comet_t *comet, u_int32_t sample, u_int32_t unit, u_int8_t data)
{
	WaveformAddr;
	u_int8_t    WaveformAddr;

	WaveformAddr = (sample << 3) + (unit & 7);
	pci_write_32((u_int32_t *) &comet->xlpg_pwave_addr, WaveformAddr);
@@ -502,7 +502,7 @@ WrtRcvEqualizerTbl(ci_t * ci, comet_t * comet, u_int32_t *table)
	* by T1/E1 clock
	*/
		/* 683ns * 3 = 1366 ns, approx 2us (but use 4us) */
		OS_uwait(4, "wret")
		OS_uwait(4, "wret");
	}

	/* Enable Equalizer & set it to use 256 periods */
+2 −2

File changed.

Contains only whitespace changes.

+3 −3

File changed.

Contains only whitespace changes.

+5 −5

File changed.

Contains only whitespace changes.

+3 −3

File changed.

Contains only whitespace changes.

+2 −2

File changed.

Contains only whitespace changes.

+32 −32

File changed.

Contains only whitespace changes.

+21 −21

File changed.

Contains only whitespace changes.

+22 −22

File changed.

Contains only whitespace changes.

+3 −3

File changed.

Contains only whitespace changes.

Loading