summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2014-08-31 17:07:07 +0200
committerClifford Wolf <clifford@clifford.at>2014-08-31 17:43:31 +0200
commit0b6769af3f7578dfb31c801014413174bd230208 (patch)
tree17eff6b8b8d8febb6f2ee47c7a1557cabedd055b
parent8649b57b6f4c3a4322acaf73f5c02d5119629c1e (diff)
Typo fixes in cell->*Param() API
-rw-r--r--kernel/rtlil.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel/rtlil.h b/kernel/rtlil.h
index e35c3c68..90760040 100644
--- a/kernel/rtlil.h
+++ b/kernel/rtlil.h
@@ -848,10 +848,10 @@ public:
const std::map<RTLIL::IdString, RTLIL::SigSpec> &connections() const;
// access cell parameters
- bool hasParam(RTLIL::IdString portname) const;
- void unsetParam(RTLIL::IdString portname);
- void setParam(RTLIL::IdString portname, RTLIL::Const value);
- const RTLIL::Const &getParam(RTLIL::IdString portname) const;
+ bool hasParam(RTLIL::IdString paramname) const;
+ void unsetParam(RTLIL::IdString paramname);
+ void setParam(RTLIL::IdString paramname, RTLIL::Const value);
+ const RTLIL::Const &getParam(RTLIL::IdString paramname) const;
void check();
void fixup_parameters(bool set_a_signed = false, bool set_b_signed = false);