Messages in this thread |  | | | Date | Fri, 13 Feb 2009 11:05:58 +0100 | | From | Jiri Slaby <> | | Subject | Re: [PATCH] drivers/isdn/hardware/mISDN: fix sparse warnings: make symbols static |
| |
On 02/12/2009 08:28 PM, Hannes Eder wrote: > diff --git a/drivers/isdn/hardware/mISDN/hfcpci.c b/drivers/isdn/hardware/mISDN/hfcpci.c > index f0e14df..2bb85c4 100644 > --- a/drivers/isdn/hardware/mISDN/hfcpci.c > +++ b/drivers/isdn/hardware/mISDN/hfcpci.c > @@ -56,8 +56,8 @@ static const char *hfcpci_revision = "2.0"; > static int HFC_cnt; > static uint debug; > static uint poll, tics; > -struct timer_list hfc_tl; > -u32 hfc_jiffies; > +static struct timer_list hfc_tl; > +static u32 hfc_jiffies;
Please also fix the hfc_jiffies type (ulong). (As a separate patch.)
|  |