mirror of https://github.com/xemu-project/xemu.git
usb: Remove disabled monitor_printf() in usb_read_file()
The monitor_printf() reports failure. Printing is wrong, because the
caller tries various arguments, and expects the function to fail for
some or all.
Disabled since commit 26a9e82a
. Remove it.
This commit is contained in:
parent
0aef4261ac
commit
4491e0f398
|
@ -1188,9 +1188,6 @@ static int usb_host_scan_dev(void *opaque, USBScanFunc *func)
|
||||||
*/
|
*/
|
||||||
static int usb_host_read_file(char *line, size_t line_size, const char *device_file, const char *device_name)
|
static int usb_host_read_file(char *line, size_t line_size, const char *device_file, const char *device_name)
|
||||||
{
|
{
|
||||||
#if 0
|
|
||||||
Monitor *mon = cur_mon;
|
|
||||||
#endif
|
|
||||||
FILE *f;
|
FILE *f;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
char filename[PATH_MAX];
|
char filename[PATH_MAX];
|
||||||
|
@ -1201,11 +1198,6 @@ static int usb_host_read_file(char *line, size_t line_size, const char *device_f
|
||||||
if (f) {
|
if (f) {
|
||||||
ret = fgets(line, line_size, f) != NULL;
|
ret = fgets(line, line_size, f) != NULL;
|
||||||
fclose(f);
|
fclose(f);
|
||||||
#if 0
|
|
||||||
} else {
|
|
||||||
if (mon)
|
|
||||||
monitor_printf(mon, "husb: could not open %s\n", filename);
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Reference in New Issue