Browse Source

Revert "Staging: sm750fb: Fix C99 Comments"

This reverts commit 6ad6b5ed3e2472b399b567a2f036006bf25df467.

It added a file that should not be in the kernel source tree.

Cc: Amitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman 10 years ago
parent
commit
97498bb576
2 changed files with 8 additions and 2 deletions
  1. 8 2
      drivers/staging/sm750fb/ddk750_chip.c
  2. 0 0
      ret.ou

+ 8 - 2
drivers/staging/sm750fb/ddk750_chip.c

@@ -17,7 +17,7 @@ logical_chip_type_t getChipType(void)
 	char physicalRev;
 	char physicalRev;
 	logical_chip_type_t chip;
 	logical_chip_type_t chip;
 
 
-	physicalID = devId750; /* either 0x718 or 0x750 */
+	physicalID = devId750;//either 0x718 or 0x750
 	physicalRev = revId750;
 	physicalRev = revId750;
 
 
 	if (physicalID == 0x718)
 	if (physicalID == 0x718)
@@ -257,7 +257,7 @@ int ddk750_initHw(initchip_param_t *pInitParam)
 
 
 	unsigned int ulReg;
 	unsigned int ulReg;
 #if 0
 #if 0
-	/* move the code to map regiter function. */
+	//move the code to map regiter function.
 	if (getChipType() == SM718) {
 	if (getChipType() == SM718) {
 		/* turn on big endian bit*/
 		/* turn on big endian bit*/
 		ulReg = PEEK32(0x74);
 		ulReg = PEEK32(0x74);
@@ -488,6 +488,7 @@ unsigned int calcPllValue(unsigned int request_orig, pll_value_t *pll)
 		}
 		}
 	}
 	}
 
 
+	//printk("Finally:  pll->n[%lu],m[%lu],od[%lu],pod[%lu]\n",pll->N,pll->M,pll->OD,pll->POD);
 	return ret;
 	return ret;
 }
 }
 
 
@@ -579,9 +580,14 @@ pll_value_t *pPLL           /* Structure to hold the value to be set in PLL */
 	}
 	}
 
 
     /* Restore input frequency from Khz to hz unit */
     /* Restore input frequency from Khz to hz unit */
+//    pPLL->inputFreq *= 1000;
 	ulRequestClk *= 1000;
 	ulRequestClk *= 1000;
 	pPLL->inputFreq = DEFAULT_INPUT_CLOCK; /* Default reference clock */
 	pPLL->inputFreq = DEFAULT_INPUT_CLOCK; /* Default reference clock */
 
 
+    /* Output debug information */
+	//DDKDEBUGPRINT((DISPLAY_LEVEL, "calcPllValue: Requested Frequency = %d\n", ulRequestClk));
+	//DDKDEBUGPRINT((DISPLAY_LEVEL, "calcPllValue: Input CLK = %dHz, M=%d, N=%d, OD=%d, POD=%d\n", pPLL->inputFreq, pPLL->M, pPLL->N, pPLL->OD, pPLL->POD));
+
     /* Return actual frequency that the PLL can set */
     /* Return actual frequency that the PLL can set */
 	ret = calcPLL(pPLL);
 	ret = calcPLL(pPLL);
 	return ret;
 	return ret;

+ 0 - 0
ret.ou