Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
xcap
xcap-capability-linux
Commits
2105b19d
Commit
2105b19d
authored
Sep 17, 2014
by
Charles Jacobsen
Committed by
Vikram Narayanan
Oct 25, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Starting readme. Still getting weird delayed crash.
parent
0d4c5664
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
0 deletions
+27
-0
drivers/lcd-prototype/README
drivers/lcd-prototype/README
+21
-0
drivers/lcd-prototype/test/customer-idl.c
drivers/lcd-prototype/test/customer-idl.c
+6
-0
No files found.
drivers/lcd-prototype/README
0 → 100644
View file @
2105b19d
Introduction
------------
This is a simple prototype (with a small test) for the LCD architecture. It
consists of:
[ 1 ] an API module (in api dir) that implements a simplified capability
subsystem and ipc subsystem
[ 2 ] a `library' module (in liblcd dir) that is intended to contain
high-level routines that lcd's can call directly into that carry
out low-level tasks (for now, it just contains a simple implementation
of a data store, more below).
[ 3 ] a group of 4 test modules (in test dir)
Building and Running
--------------------
In the kernel menuconfig, under the drivers submenu, select
\ No newline at end of file
drivers/lcd-prototype/test/customer-idl.c
View file @
2105b19d
...
...
@@ -137,6 +137,10 @@ int customer_start(void)
LCD_ERR
(
"customer init"
);
return
-
1
;
}
/*
* Call customer exit
*/
__customer_exit
();
/*
* Now tear down
*/
...
...
@@ -147,6 +151,8 @@ int customer_start(void)
return
ret
;
}
LCD_MSG
(
"customer idl done"
);
return
0
;
}
EXPORT_SYMBOL
(
customer_start
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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