X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=linux.c;h=61446a4171ae863034b2cf75b3ff81efc2dff0e8;hb=276ef1b92fe0a885c4e2156feeefb29ad67fc0c4;hp=9ccd3b384608d8ed4fd62551a4744f9af04cc5bb;hpb=12056e2f75c01a8512d046ce5d8ed9d72e7cf22b;p=libserialport.git diff --git a/linux.c b/linux.c index 9ccd3b3..61446a4 100644 --- a/linux.c +++ b/linux.c @@ -25,7 +25,8 @@ SP_PRIV enum sp_return get_port_details(struct sp_port *port) /* Description limited to 127 char, anything longer would not be user friendly anyway */ char description[128]; - int bus, address, vid, pid = -1; + int bus, address; + unsigned int vid, pid; char manufacturer[128], product[128], serial[128]; char baddr[32]; const char dir_name[] = "/sys/class/tty/%s/device/%s%s"; @@ -35,12 +36,12 @@ SP_PRIV enum sp_return get_port_details(struct sp_port *port) int i, count; if (strncmp(port->name, "/dev/", 5)) - RETURN_ERROR(SP_ERR_ARG, "Device name not recognized (%s)", port->name); + RETURN_ERROR(SP_ERR_ARG, "Device name not recognized."); snprintf(file_name, sizeof(file_name), "/sys/class/tty/%s", dev); count = readlink(file_name, file_name, sizeof(file_name)); if (count <= 0 || count >= (int) sizeof(file_name)-1) - RETURN_ERROR(SP_ERR_ARG, "Device not found (%s)", port->name); + RETURN_ERROR(SP_ERR_ARG, "Device not found."); file_name[count] = 0; if (strstr(file_name, "bluetooth")) port->transport = SP_TRANSPORT_BLUETOOTH; @@ -164,9 +165,7 @@ SP_PRIV enum sp_return list_ports(struct sp_port ***list) struct serial_struct serial_info; int ioctl_result; #endif -#ifndef HAVE_READLINKAT char buf[sizeof(entry.d_name) + 16]; -#endif int len, fd; DIR *dir; int ret = SP_OK; @@ -177,19 +176,15 @@ SP_PRIV enum sp_return list_ports(struct sp_port ***list) DEBUG("Iterating over results"); while (!readdir_r(dir, &entry, &result) && result) { -#ifdef HAVE_READLINKAT - len = readlinkat(dirfd(dir), entry.d_name, target, sizeof(target)); -#else snprintf(buf, sizeof(buf), "/sys/class/tty/%s", entry.d_name); len = readlink(buf, target, sizeof(target)); -#endif if (len <= 0 || len >= (int) sizeof(target)-1) continue; target[len] = 0; if (strstr(target, "virtual")) continue; snprintf(name, sizeof(name), "/dev/%s", entry.d_name); - DEBUG("Found device %s", name); + DEBUG_FMT("Found device %s", name); if (strstr(target, "serial8250")) { /* The serial8250 driver has a hardcoded number of ports. * The only way to tell which actually exist on a given system @@ -214,7 +209,7 @@ SP_PRIV enum sp_return list_ports(struct sp_port ***list) } #endif } - DEBUG("Found port %s", name); + DEBUG_FMT("Found port %s", name); *list = list_append(*list, name); if (!list) { SET_ERROR(ret, SP_ERR_MEM, "list append failed");