Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
xcap
xcap-capability-linux
Commits
bfd6e708
Commit
bfd6e708
authored
Nov 26, 2018
by
Vikram Narayanan
Browse files
lcds: Prune headers, Kconfig
parent
a2637ac7
Changes
3
Hide whitespace changes
Inline
Side-by-side
include/uapi/linux/Kbuild
View file @
bfd6e708
...
...
@@ -246,7 +246,6 @@ header-y += hw_breakpoint.h
header-y += l2tp.h
header-y += libc-compat.h
header-y += lirc.h
header-y += lcd.h
header-y += limits.h
header-y += llc.h
header-y += loop.h
...
...
@@ -472,4 +471,3 @@ header-y += zorro.h
header-y += zorro_ids.h
header-y += userfaultfd.h
header-y += hw_breakpoint.h
header-y += lcd-domains.h
include/uapi/linux/lcd.h
deleted
100644 → 0
View file @
a2637ac7
#ifndef LCD_DOMAINS_H
#define LCD_DOMAINS_H
/*
* lcd-domains.h - public header for LCD support
*/
#include
<linux/types.h>
/*
* IOCTL interface
*/
/* FIXME: this must be reserved in miscdevice.h */
#define LCD_MINOR 234
struct
lcd_pv_kernel_config
{
char
*
file_name
;
unsigned
int
file_name_length
;
__u64
length
;
}
__attribute__
((
packed
));
struct
lcd_blob_info
{
unsigned
char
*
blob
;
unsigned
int
blob_order
;
}
__attribute__
((
packed
));
#define LCD_LOAD_PV_KERNEL _IOR(LCD_MINOR, 0x01, struct lcd_pv_kernel_config)
#define LCD_RUN_BLOB _IOR(LCD_MINOR, 0x02, struct lcd_blob_info)
#endif
/* LCD_DOMAINS_H */
lib/Kconfig
View file @
bfd6e708
...
...
@@ -550,6 +550,4 @@ config STACKDEPOT
bool
select STACKTRACE
source "lib/thc/Kconfig"
endmenu
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment