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: Dulshani Gunawardhana <dulshani.gunawardhana89@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
cd1ccce165
commit
ee1803cf20
10 changed files with 104 additions and 104 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Reference in a new issue