| Linux kernel & device driver programming |
| [ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] |
1 #!/bin/sh
2 module="shortprint"
3 device="shortprint"
4
5 # invoke rmmod with all arguments we got
6 /sbin/rmmod $module $* || exit 1
7
8 # Remove stale nodes
9 rm -f /dev/${device}
10
11
12
13
14
15
| This page was automatically generated by the LXR engine. |