diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2006-07-11 21:22:58 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-07-12 16:03:25 -0700 |
commit | a969888ce91673c7f4b86520d851a6f0d5a5fa7d (patch) | |
tree | 69508930d88cb4f56b82b710f458492be4525070 /drivers/usb/serial/ezusb.c | |
parent | 166ffccfd4556ac6a777982d193ae145bb0a21e0 (diff) | |
download | op-kernel-dev-a969888ce91673c7f4b86520d851a6f0d5a5fa7d.zip op-kernel-dev-a969888ce91673c7f4b86520d851a6f0d5a5fa7d.tar.gz |
[PATCH] USB: move usb-serial.h to include/linux/usb/
USB serial outside of the kernel tree can not build properly due to
usb-serial.h being buried down in the source tree. This patch moves the
location of the file to include/linux/usb and fixes up all of the usb
serial drivers to handle the move properly.
Cc: Sergei Organov <osv@javad.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/serial/ezusb.c')
-rw-r--r-- | drivers/usb/serial/ezusb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/serial/ezusb.c b/drivers/usb/serial/ezusb.c index debc3b0..5169c2d 100644 --- a/drivers/usb/serial/ezusb.c +++ b/drivers/usb/serial/ezusb.c @@ -15,7 +15,7 @@ #include <linux/tty.h> #include <linux/module.h> #include <linux/usb.h> -#include "usb-serial.h" +#include <linux/usb/serial.h> /* EZ-USB Control and Status Register. Bit 0 controls 8051 reset */ #define CPUCS_REG 0x7F92 |