]> git.zerfleddert.de Git - usb-driver/commitdiff
do not export unnecessary symbols
authorMichael Gernoth <michael@gernoth.net>
Sat, 3 Nov 2007 19:45:32 +0000 (20:45 +0100)
committerMichael Gernoth <michael@gernoth.net>
Sat, 3 Nov 2007 19:45:32 +0000 (20:45 +0100)
jtagkey.c
usb-driver.c

index d23c60d244a06e6e04e368b1e701b777875d725d..fc9587cb5dcc1e23e873e08d40ea38470fd0e96e 100644 (file)
--- a/jtagkey.c
+++ b/jtagkey.c
@@ -109,7 +109,8 @@ void jtagkey_close(int handle) {
        }
 }
 
-void jtagkey_state(unsigned char data) {
+#ifdef DEBUG
+static void jtagkey_state(unsigned char data) {
        fprintf(stderr,"Pins high: ");
 
        if (data & JTAGKEY_TCK)
@@ -129,6 +130,7 @@ void jtagkey_state(unsigned char data) {
        
        fprintf(stderr,"\n");
 }
+#endif
 
 struct jtagkey_reader_arg {
        int             num;
index 27a9580a4ade4c06b27d5049edb98ef5ea773692..5d1528e148abfad639963685d3b88b699a17d51d 100644 (file)
@@ -47,9 +47,9 @@ static int windrvrfd = -1;
 static unsigned long ppbase = 0;
 static unsigned long ecpbase = 0;
 static struct parport_config *pport = NULL;
-FILE *modulesfp = NULL;
-FILE *baseaddrfp = NULL;
-int baseaddrnum = 0;
+static FILE *modulesfp = NULL;
+static FILE *baseaddrfp = NULL;
+static int baseaddrnum = 0;
 static int modules_read = 0;
 static struct usb_bus *busses = NULL;
 static struct usb_device *usbdevice;
@@ -72,7 +72,7 @@ void hexdump(unsigned char *buf, int len) {
        fprintf(stderr,"\n");
 }
 
-int usb_deviceinfo(unsigned char *buf) {
+static int usb_deviceinfo(unsigned char *buf) {
        int i,j,k,l;
        int len = 0;
        WDU_CONFIGURATION **pConfigs, **pActiveConfig;
@@ -232,7 +232,7 @@ int usb_deviceinfo(unsigned char *buf) {
        return len;
 }
 
-int do_wdioctl(int fd, unsigned int request, unsigned char *wdioctl) {
+static int do_wdioctl(int fd, unsigned int request, unsigned char *wdioctl) {
        struct header_struct* wdheader = (struct header_struct*)wdioctl;
        struct version_struct *version;
        int ret = 0;
Impressum, Datenschutz