From 794509aba9ee543d23911d9d4ce6272a50edbed6 Mon Sep 17 00:00:00 2001 From: John Wright Date: Mon, 4 May 2020 14:39:05 -0700 Subject: [PATCH] [ci skip] Scaladoc and comment fixes (#542) --- generators/chipyard/src/main/scala/IOBinders.scala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/generators/chipyard/src/main/scala/IOBinders.scala b/generators/chipyard/src/main/scala/IOBinders.scala index e3c79f3a..281c5917 100644 --- a/generators/chipyard/src/main/scala/IOBinders.scala +++ b/generators/chipyard/src/main/scala/IOBinders.scala @@ -104,7 +104,7 @@ object AddIOCells { /** * Add IO cells to a SiFive UART devices and name the IO ports. - * @param gpios A Seq of UART port bundles + * @param uartPins A Seq of UART port bundles * @return Returns a tuple of (A Seq of top-level UARTPortIO IOs; a 2D Seq of IOCell module references) */ def uart(uartPins: Seq[UARTPortIO]): (Seq[UARTPortIO], Seq[Seq[IOCell]]) = { @@ -117,7 +117,7 @@ object AddIOCells { /** * Add IO cells to a debug module and name the IO ports. - * @param gpios A PSDIO bundle + * @param psd A PSDIO bundle * @param resetctrlOpt An optional ResetCtrlIO bundle * @param debugOpt An optional DebugIO bundle * @return Returns a tuple3 of (Top-level PSDIO IO; Optional top-level DebugIO IO; a list of IOCell module references) @@ -312,4 +312,4 @@ class WithTraceGenSuccessBinder extends OverrideIOBinder({ } }) -} +} /* end package object */