File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,6 @@ static inline bool is_early_uv_system(void)
31
31
}
32
32
extern int is_uv_system (void );
33
33
extern int is_uv_hubbed (int uvtype );
34
- extern int is_uv_hubless (int uvtype );
35
34
extern void uv_cpu_init (void );
36
35
extern void uv_nmi_init (void );
37
36
extern void uv_system_init (void );
@@ -44,7 +43,6 @@ static inline enum uv_system_type get_uv_system_type(void) { return UV_NONE; }
44
43
static inline bool is_early_uv_system (void ) { return 0 ; }
45
44
static inline int is_uv_system (void ) { return 0 ; }
46
45
static inline int is_uv_hubbed (int uv ) { return 0 ; }
47
- static inline int is_uv_hubless (int uv ) { return 0 ; }
48
46
static inline void uv_cpu_init (void ) { }
49
47
static inline void uv_system_init (void ) { }
50
48
static inline const struct cpumask *
Original file line number Diff line number Diff line change @@ -385,11 +385,10 @@ int is_uv_hubbed(int uvtype)
385
385
}
386
386
EXPORT_SYMBOL_GPL (is_uv_hubbed );
387
387
388
- int is_uv_hubless (int uvtype )
388
+ static int is_uv_hubless (int uvtype )
389
389
{
390
390
return (uv_hubless_system & uvtype );
391
391
}
392
- EXPORT_SYMBOL_GPL (is_uv_hubless );
393
392
394
393
void * * __uv_hub_info_list ;
395
394
EXPORT_SYMBOL_GPL (__uv_hub_info_list );
You can’t perform that action at this time.
0 commit comments