brcm2708: update 3.10 patches with raspberrypi/rpi-3.10.y of 27 Apr. 2014
[14.07/openwrt.git] / target / linux / brcm2708 / patches-3.10 / 0073-dwc_otg-fix-device-attributes-and-avoid-kernel-warni.patch
1 From 7f68345942e44b3ff6b922d00d9650abae485eac Mon Sep 17 00:00:00 2001
2 From: popcornmix <popcornmix@gmail.com>
3 Date: Wed, 3 Jul 2013 11:39:46 +0100
4 Subject: [PATCH 073/196] dwc_otg: fix device attributes and avoid kernel
5  warnings on boot
6
7 ---
8  drivers/usb/host/dwc_otg/dwc_otg_attr.c | 12 ++++++------
9  1 file changed, 6 insertions(+), 6 deletions(-)
10
11 diff --git a/drivers/usb/host/dwc_otg/dwc_otg_attr.c b/drivers/usb/host/dwc_otg/dwc_otg_attr.c
12 index 95eb7f8..9602fda 100644
13 --- a/drivers/usb/host/dwc_otg/dwc_otg_attr.c
14 +++ b/drivers/usb/host/dwc_otg/dwc_otg_attr.c
15 @@ -909,7 +909,7 @@ static ssize_t regdump_show(struct device *_dev,
16         return sprintf(buf, "Register Dump\n");
17  }
18  
19 -DEVICE_ATTR(regdump, S_IRUGO | S_IWUSR, regdump_show, 0);
20 +DEVICE_ATTR(regdump, S_IRUGO, regdump_show, 0);
21  
22  /**
23   * Dump global registers and either host or device registers (depending on the
24 @@ -925,7 +925,7 @@ static ssize_t spramdump_show(struct device *_dev,
25         return sprintf(buf, "SPRAM Dump\n");
26  }
27  
28 -DEVICE_ATTR(spramdump, S_IRUGO | S_IWUSR, spramdump_show, 0);
29 +DEVICE_ATTR(spramdump, S_IRUGO, spramdump_show, 0);
30  
31  /**
32   * Dump the current hcd state.
33 @@ -940,7 +940,7 @@ static ssize_t hcddump_show(struct device *_dev,
34         return sprintf(buf, "HCD Dump\n");
35  }
36  
37 -DEVICE_ATTR(hcddump, S_IRUGO | S_IWUSR, hcddump_show, 0);
38 +DEVICE_ATTR(hcddump, S_IRUGO, hcddump_show, 0);
39  
40  /**
41   * Dump the average frame remaining at SOF. This can be used to
42 @@ -958,7 +958,7 @@ static ssize_t hcd_frrem_show(struct device *_dev,
43         return sprintf(buf, "HCD Dump Frame Remaining\n");
44  }
45  
46 -DEVICE_ATTR(hcd_frrem, S_IRUGO | S_IWUSR, hcd_frrem_show, 0);
47 +DEVICE_ATTR(hcd_frrem, S_IRUGO, hcd_frrem_show, 0);
48  
49  /**
50   * Displays the time required to read the GNPTXFSIZ register many times (the
51 @@ -986,7 +986,7 @@ static ssize_t rd_reg_test_show(struct device *_dev,
52                        RW_REG_COUNT, time * MSEC_PER_JIFFIE, time);
53  }
54  
55 -DEVICE_ATTR(rd_reg_test, S_IRUGO | S_IWUSR, rd_reg_test_show, 0);
56 +DEVICE_ATTR(rd_reg_test, S_IRUGO, rd_reg_test_show, 0);
57  
58  /**
59   * Displays the time required to write the GNPTXFSIZ register many times (the
60 @@ -1014,7 +1014,7 @@ static ssize_t wr_reg_test_show(struct device *_dev,
61                        RW_REG_COUNT, time * MSEC_PER_JIFFIE, time);
62  }
63  
64 -DEVICE_ATTR(wr_reg_test, S_IRUGO | S_IWUSR, wr_reg_test_show, 0);
65 +DEVICE_ATTR(wr_reg_test, S_IRUGO, wr_reg_test_show, 0);
66  
67  #ifdef CONFIG_USB_DWC_OTG_LPM
68  
69 -- 
70 1.9.1
71