warnings, use NG_IGNORE()
This commit is contained in:
parent
7091a81272
commit
70678fb77e
|
|
@ -1,3 +1,11 @@
|
|||
2011-04-30 Robert Larice
|
||||
* src/spicelib/devices/hisimhv/hsmhvask.c ,
|
||||
* src/spicelib/devices/hisimhv/hsmhvld.c ,
|
||||
* src/spicelib/devices/hisimhv/hsmhvmask.c ,
|
||||
* src/spicelib/devices/hisimhv/hsmhvpar.c ,
|
||||
* src/spicelib/devices/hisimhv/hsmhvpzld.c :
|
||||
warnings, use NG_IGNORE()
|
||||
|
||||
2011-04-30 Robert Larice
|
||||
* configure.ac :
|
||||
re-enable unused-parameter Warnings
|
||||
|
|
|
|||
|
|
@ -43,6 +43,7 @@ int HSMHVask(
|
|||
double dQd_nqs_dVds, dQd_nqs_dVgs, dQd_nqs_dVbs, dQd_nqs_dQi_nqs ;
|
||||
double dQg_nqs_dQi_nqs, dQg_nqs_dQb_nqs ;
|
||||
|
||||
NG_IGNORE(select);
|
||||
|
||||
here->HSMHV_csdo = - (here->HSMHV_cddo + here->HSMHV_cgdo + here->HSMHV_cbdo) ;
|
||||
here->HSMHV_csgo = - (here->HSMHV_cdgo + here->HSMHV_cggo + here->HSMHV_cbgo) ;
|
||||
|
|
|
|||
|
|
@ -41,6 +41,9 @@ static void ShowPhysVals
|
|||
)
|
||||
{
|
||||
|
||||
NG_IGNORE(vgd);
|
||||
NG_IGNORE(vbd);
|
||||
|
||||
/* */
|
||||
/* */
|
||||
/* Note: This function is not yet adapted to the flat version */
|
||||
|
|
|
|||
|
|
@ -30,7 +30,10 @@ int HSMHVmAsk(
|
|||
int which,
|
||||
IFvalue *value)
|
||||
{
|
||||
NG_IGNORE(ckt);
|
||||
|
||||
HSMHVmodel *model = (HSMHVmodel *)inst;
|
||||
|
||||
switch (which) {
|
||||
case HSMHV_MOD_NMOS:
|
||||
value->iValue = model->HSMHV_type;
|
||||
|
|
|
|||
|
|
@ -29,6 +29,9 @@ int HSMHVparam(
|
|||
IFvalue *select)
|
||||
{
|
||||
HSMHVinstance *here = (HSMHVinstance*)inst;
|
||||
|
||||
NG_IGNORE(select);
|
||||
|
||||
switch (param) {
|
||||
case HSMHV_COSELFHEAT:
|
||||
here->HSMHV_coselfheat = value->iValue;
|
||||
|
|
|
|||
|
|
@ -28,8 +28,11 @@ int HSMHVpzLoad(
|
|||
register CKTcircuit *ckt,
|
||||
register SPcomplex *s)
|
||||
{
|
||||
NG_IGNORE(ckt);
|
||||
|
||||
register HSMHVmodel *model = (HSMHVmodel*)inModel;
|
||||
register HSMHVinstance *here;
|
||||
|
||||
int flg_nqs =0 ;
|
||||
|
||||
#define dNode 0
|
||||
|
|
|
|||
Loading…
Reference in New Issue