File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
arch/parisc/boot/compressed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ char *strchr(const char *s, int c)
117
117
return NULL ;
118
118
}
119
119
120
- int puts (const char * s )
120
+ static int puts (const char * s )
121
121
{
122
122
const char * nuline = s ;
123
123
@@ -172,7 +172,7 @@ static int print_num(unsigned long num, int base)
172
172
return 0 ;
173
173
}
174
174
175
- int printf (const char * fmt , ...)
175
+ static int printf (const char * fmt , ...)
176
176
{
177
177
va_list args ;
178
178
int i = 0 ;
@@ -204,13 +204,13 @@ void abort(void)
204
204
}
205
205
206
206
#undef malloc
207
- void * malloc (size_t size )
207
+ static void * malloc (size_t size )
208
208
{
209
209
return malloc_gzip (size );
210
210
}
211
211
212
212
#undef free
213
- void free (void * ptr )
213
+ static void free (void * ptr )
214
214
{
215
215
return free_gzip (ptr );
216
216
}
@@ -278,7 +278,7 @@ static void parse_elf(void *output)
278
278
free (phdrs );
279
279
}
280
280
281
- unsigned long decompress_kernel (unsigned int started_wide ,
281
+ asmlinkage unsigned long __visible decompress_kernel (unsigned int started_wide ,
282
282
unsigned int command_line ,
283
283
const unsigned int rd_start ,
284
284
const unsigned int rd_end )
You can’t perform that action at this time.
0 commit comments