- Change the atm_cm_init function to take no argument.

This commit is contained in:
Andrew R. Reiter 2002-05-07 20:12:29 +00:00
parent 839af0c103
commit a3d5f221b4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=96176
2 changed files with 2 additions and 2 deletions

View File

@ -107,7 +107,7 @@ static uma_zone_t atm_connection_zone;
static uma_zone_t atm_connvc_zone;
void
atm_cm_init(void *arg)
atm_cm_init(void)
{
atm_connection_zone = uma_zcreate("atm connection",

View File

@ -344,7 +344,7 @@ struct atm_cm_stat {
u_long cms_rcvconnvc; /* Packets dropped, bad connvc state */
};
void atm_cm_init(void *);
void atm_cm_init(void);
#endif /* _KERNEL */