diff options
| author | Felipe Balbi <felipe.lima@indt.org.br> | 2007-08-10 09:34:24 -0400 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@suse.de> | 2007-10-12 17:55:10 -0400 |
| commit | ed86d97068c7d53561d3e9b59db6c6b11f6091c7 (patch) | |
| tree | 7716665f6bb314b8ddb6d579a26c4b1bc910d007 /drivers/usb/misc | |
| parent | 79a7d9ee1a2e8b8dc44dd217f07496911850ec0e (diff) | |
USB: SisUSB2VGA: Whitespace Cleanups
This patches clean some trailing whitespaces in sisusb2vga
driver.
Signed-off-by: Felipe Balbi <felipe.lima@indt.org.br>
Cc: Thomas Winischhofer <thomas@winischhofer.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/misc')
| -rw-r--r-- | drivers/usb/misc/sisusbvga/sisusb.c | 26 | ||||
| -rw-r--r-- | drivers/usb/misc/sisusbvga/sisusb.h | 6 | ||||
| -rw-r--r-- | drivers/usb/misc/sisusbvga/sisusb_init.c | 2 | ||||
| -rw-r--r-- | drivers/usb/misc/sisusbvga/sisusb_init.h | 4 | ||||
| -rw-r--r-- | drivers/usb/misc/sisusbvga/sisusb_struct.h | 2 |
5 files changed, 20 insertions, 20 deletions
diff --git a/drivers/usb/misc/sisusbvga/sisusb.c b/drivers/usb/misc/sisusbvga/sisusb.c index b64ca91d9b..376f86cab4 100644 --- a/drivers/usb/misc/sisusbvga/sisusb.c +++ b/drivers/usb/misc/sisusbvga/sisusb.c | |||
| @@ -32,7 +32,7 @@ | |||
| 32 | * * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 32 | * * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 33 | * * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 33 | * * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 34 | * | 34 | * |
| 35 | * Author: Thomas Winischhofer <thomas@winischhofer.net> | 35 | * Author: Thomas Winischhofer <thomas@winischhofer.net> |
| 36 | * | 36 | * |
| 37 | */ | 37 | */ |
| 38 | 38 | ||
| @@ -962,12 +962,12 @@ static int sisusb_write_mem_bulk(struct sisusb_usb_data *sisusb, u32 addr, | |||
| 962 | packet.address = 0x00000194; | 962 | packet.address = 0x00000194; |
| 963 | packet.data = addr; | 963 | packet.data = addr; |
| 964 | ret = sisusb_send_bridge_packet(sisusb, 10, | 964 | ret = sisusb_send_bridge_packet(sisusb, 10, |
| 965 | &packet, 0); | 965 | &packet, 0); |
| 966 | packet.header = 0x001f; | 966 | packet.header = 0x001f; |
| 967 | packet.address = 0x00000190; | 967 | packet.address = 0x00000190; |
| 968 | packet.data = (length & ~3); | 968 | packet.data = (length & ~3); |
| 969 | ret |= sisusb_send_bridge_packet(sisusb, 10, | 969 | ret |= sisusb_send_bridge_packet(sisusb, 10, |
| 970 | &packet, 0); | 970 | &packet, 0); |
| 971 | if (sisusb->flagb0 != 0x16) { | 971 | if (sisusb->flagb0 != 0x16) { |
| 972 | packet.header = 0x001f; | 972 | packet.header = 0x001f; |
| 973 | packet.address = 0x00000180; | 973 | packet.address = 0x00000180; |
| @@ -1019,7 +1019,7 @@ static int sisusb_write_mem_bulk(struct sisusb_usb_data *sisusb, u32 addr, | |||
| 1019 | } | 1019 | } |
| 1020 | 1020 | ||
| 1021 | if (ret) | 1021 | if (ret) |
| 1022 | break; | 1022 | break; |
| 1023 | 1023 | ||
| 1024 | } | 1024 | } |
| 1025 | 1025 | ||
| @@ -1305,7 +1305,7 @@ static int sisusb_read_mem_bulk(struct sisusb_usb_data *sisusb, u32 addr, | |||
| 1305 | } | 1305 | } |
| 1306 | 1306 | ||
| 1307 | if (ret) | 1307 | if (ret) |
| 1308 | break; | 1308 | break; |
| 1309 | } | 1309 | } |
| 1310 | 1310 | ||
| 1311 | return ret; | 1311 | return ret; |
| @@ -1533,9 +1533,9 @@ sisusb_clear_vram(struct sisusb_usb_data *sisusb, u32 address, int length) | |||
| 1533 | #define SETIREGAND(r,i,a) sisusb_setidxregand(sisusb, r, i, a) | 1533 | #define SETIREGAND(r,i,a) sisusb_setidxregand(sisusb, r, i, a) |
| 1534 | #define SETIREGANDOR(r,i,a,o) sisusb_setidxregandor(sisusb, r, i, a, o) | 1534 | #define SETIREGANDOR(r,i,a,o) sisusb_setidxregandor(sisusb, r, i, a, o) |
| 1535 | #define READL(a,d) sisusb_read_memio_long(sisusb, SISUSB_TYPE_MEM, a, d) | 1535 | #define READL(a,d) sisusb_read_memio_long(sisusb, SISUSB_TYPE_MEM, a, d) |
| 1536 | #define WRITEL(a,d) sisusb_write_memio_long(sisusb, SISUSB_TYPE_MEM, a, d) | 1536 | #define WRITEL(a,d) sisusb_write_memio_long(sisusb, SISUSB_TYPE_MEM, a, d) |
| 1537 | #define READB(a,d) sisusb_read_memio_byte(sisusb, SISUSB_TYPE_MEM, a, d) | 1537 | #define READB(a,d) sisusb_read_memio_byte(sisusb, SISUSB_TYPE_MEM, a, d) |
| 1538 | #define WRITEB(a,d) sisusb_write_memio_byte(sisusb, SISUSB_TYPE_MEM, a, d) | 1538 | #define WRITEB(a,d) sisusb_write_memio_byte(sisusb, SISUSB_TYPE_MEM, a, d) |
| 1539 | 1539 | ||
| 1540 | static int | 1540 | static int |
| 1541 | sisusb_triggersr16(struct sisusb_usb_data *sisusb, u8 ramtype) | 1541 | sisusb_triggersr16(struct sisusb_usb_data *sisusb, u8 ramtype) |
| @@ -2008,7 +2008,7 @@ sisusb_set_default_mode(struct sisusb_usb_data *sisusb, int touchengines) | |||
| 2008 | SETIREG(SISSR, 0x26, 0x00); | 2008 | SETIREG(SISSR, 0x26, 0x00); |
| 2009 | } | 2009 | } |
| 2010 | 2010 | ||
| 2011 | SETIREG(SISCR, 0x34, 0x44); /* we just set std mode #44 */ | 2011 | SETIREG(SISCR, 0x34, 0x44); /* we just set std mode #44 */ |
| 2012 | 2012 | ||
| 2013 | return ret; | 2013 | return ret; |
| 2014 | } | 2014 | } |
| @@ -2942,7 +2942,7 @@ static int | |||
| 2942 | sisusb_handle_command(struct sisusb_usb_data *sisusb, struct sisusb_command *y, | 2942 | sisusb_handle_command(struct sisusb_usb_data *sisusb, struct sisusb_command *y, |
| 2943 | unsigned long arg) | 2943 | unsigned long arg) |
| 2944 | { | 2944 | { |
| 2945 | int retval, port, length; | 2945 | int retval, port, length; |
| 2946 | u32 address; | 2946 | u32 address; |
| 2947 | 2947 | ||
| 2948 | /* All our commands require the device | 2948 | /* All our commands require the device |
| @@ -3065,12 +3065,12 @@ sisusb_handle_command(struct sisusb_usb_data *sisusb, struct sisusb_command *y, | |||
| 3065 | 3065 | ||
| 3066 | static int | 3066 | static int |
| 3067 | sisusb_ioctl(struct inode *inode, struct file *file, unsigned int cmd, | 3067 | sisusb_ioctl(struct inode *inode, struct file *file, unsigned int cmd, |
| 3068 | unsigned long arg) | 3068 | unsigned long arg) |
| 3069 | { | 3069 | { |
| 3070 | struct sisusb_usb_data *sisusb; | 3070 | struct sisusb_usb_data *sisusb; |
| 3071 | struct sisusb_info x; | 3071 | struct sisusb_info x; |
| 3072 | struct sisusb_command y; | 3072 | struct sisusb_command y; |
| 3073 | int retval = 0; | 3073 | int retval = 0; |
| 3074 | u32 __user *argp = (u32 __user *)arg; | 3074 | u32 __user *argp = (u32 __user *)arg; |
| 3075 | 3075 | ||
| 3076 | if (!(sisusb = (struct sisusb_usb_data *)file->private_data)) | 3076 | if (!(sisusb = (struct sisusb_usb_data *)file->private_data)) |
| @@ -3095,7 +3095,7 @@ sisusb_ioctl(struct inode *inode, struct file *file, unsigned int cmd, | |||
| 3095 | 3095 | ||
| 3096 | case SISUSB_GET_CONFIG: | 3096 | case SISUSB_GET_CONFIG: |
| 3097 | 3097 | ||
| 3098 | x.sisusb_id = SISUSB_ID; | 3098 | x.sisusb_id = SISUSB_ID; |
| 3099 | x.sisusb_version = SISUSB_VERSION; | 3099 | x.sisusb_version = SISUSB_VERSION; |
| 3100 | x.sisusb_revision = SISUSB_REVISION; | 3100 | x.sisusb_revision = SISUSB_REVISION; |
| 3101 | x.sisusb_patchlevel = SISUSB_PATCHLEVEL; | 3101 | x.sisusb_patchlevel = SISUSB_PATCHLEVEL; |
| @@ -3164,7 +3164,7 @@ static const struct file_operations usb_sisusb_fops = { | |||
| 3164 | .release = sisusb_release, | 3164 | .release = sisusb_release, |
| 3165 | .read = sisusb_read, | 3165 | .read = sisusb_read, |
| 3166 | .write = sisusb_write, | 3166 | .write = sisusb_write, |
| 3167 | .llseek = sisusb_lseek, | 3167 | .llseek = sisusb_lseek, |
| 3168 | #ifdef SISUSB_NEW_CONFIG_COMPAT | 3168 | #ifdef SISUSB_NEW_CONFIG_COMPAT |
| 3169 | .compat_ioctl = sisusb_compat_ioctl, | 3169 | .compat_ioctl = sisusb_compat_ioctl, |
| 3170 | #endif | 3170 | #endif |
diff --git a/drivers/usb/misc/sisusbvga/sisusb.h b/drivers/usb/misc/sisusbvga/sisusb.h index 8e1120a648..555fed0ba0 100644 --- a/drivers/usb/misc/sisusbvga/sisusb.h +++ b/drivers/usb/misc/sisusbvga/sisusb.h | |||
| @@ -30,7 +30,7 @@ | |||
| 30 | * * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 30 | * * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 31 | * * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 31 | * * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 32 | * | 32 | * |
| 33 | * Author: Thomas Winischhofer <thomas@winischhofer.net> | 33 | * Author: Thomas Winischhofer <thomas@winischhofer.net> |
| 34 | * | 34 | * |
| 35 | */ | 35 | */ |
| 36 | 36 | ||
| @@ -53,7 +53,7 @@ | |||
| 53 | /* Version Information */ | 53 | /* Version Information */ |
| 54 | 54 | ||
| 55 | #define SISUSB_VERSION 0 | 55 | #define SISUSB_VERSION 0 |
| 56 | #define SISUSB_REVISION 0 | 56 | #define SISUSB_REVISION 0 |
| 57 | #define SISUSB_PATCHLEVEL 8 | 57 | #define SISUSB_PATCHLEVEL 8 |
| 58 | 58 | ||
| 59 | /* Include console and mode switching code? */ | 59 | /* Include console and mode switching code? */ |
| @@ -93,7 +93,7 @@ | |||
| 93 | */ | 93 | */ |
| 94 | 94 | ||
| 95 | #ifdef __BIG_ENDIAN | 95 | #ifdef __BIG_ENDIAN |
| 96 | #define SISUSB_CORRECT_ENDIANNESS_PACKET(p) \ | 96 | #define SISUSB_CORRECT_ENDIANNESS_PACKET(p) \ |
| 97 | do { \ | 97 | do { \ |
| 98 | p->header = cpu_to_le16(p->header); \ | 98 | p->header = cpu_to_le16(p->header); \ |
| 99 | p->address = cpu_to_le32(p->address); \ | 99 | p->address = cpu_to_le32(p->address); \ |
diff --git a/drivers/usb/misc/sisusbvga/sisusb_init.c b/drivers/usb/misc/sisusbvga/sisusb_init.c index 9b30f89628..d51de0ff9e 100644 --- a/drivers/usb/misc/sisusbvga/sisusb_init.c +++ b/drivers/usb/misc/sisusbvga/sisusb_init.c | |||
| @@ -32,7 +32,7 @@ | |||
| 32 | * * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 32 | * * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 33 | * * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 33 | * * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 34 | * | 34 | * |
| 35 | * Author: Thomas Winischhofer <thomas@winischhofer.net> | 35 | * Author: Thomas Winischhofer <thomas@winischhofer.net> |
| 36 | * | 36 | * |
| 37 | */ | 37 | */ |
| 38 | 38 | ||
diff --git a/drivers/usb/misc/sisusbvga/sisusb_init.h b/drivers/usb/misc/sisusbvga/sisusb_init.h index 864bc0e965..d47301eaca 100644 --- a/drivers/usb/misc/sisusbvga/sisusb_init.h +++ b/drivers/usb/misc/sisusbvga/sisusb_init.h | |||
| @@ -46,7 +46,7 @@ | |||
| 46 | * * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 46 | * * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 47 | * * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 47 | * * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 48 | * | 48 | * |
| 49 | * Author: Thomas Winischhofer <thomas@winischhofer.net> | 49 | * Author: Thomas Winischhofer <thomas@winischhofer.net> |
| 50 | * | 50 | * |
| 51 | */ | 51 | */ |
| 52 | |||
