summaryrefslogtreecommitdiffstats
path: root/mtp/legacy/MtpRequestPacket.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--mtp/legacy/MtpRequestPacket.h (renamed from mtp/MtpRequestPacket.h)20
1 files changed, 10 insertions, 10 deletions
diff --git a/mtp/MtpRequestPacket.h b/mtp/legacy/MtpRequestPacket.h
index 8551dded0..dcf00d6ec 100644
--- a/mtp/MtpRequestPacket.h
+++ b/mtp/legacy/MtpRequestPacket.h
@@ -5,7 +5,7 @@
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
- * http://www.apache.org/licenses/LICENSE-2.0
+ * http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
@@ -28,21 +28,21 @@ struct usb_request;
class MtpRequestPacket : public MtpPacket {
public:
- MtpRequestPacket();
- virtual ~MtpRequestPacket();
+ MtpRequestPacket();
+ virtual ~MtpRequestPacket();
#ifdef MTP_DEVICE
- // fill our buffer with data from the given file descriptor
- int read(int fd);
+ // fill our buffer with data from the given file descriptor
+ int read(int fd);
#endif
#ifdef MTP_HOST
- // write our buffer to the given endpoint
- int write(struct usb_request *request);
+ // write our buffer to the given endpoint
+ int write(struct usb_request *request);
#endif
- inline MtpOperationCode getOperationCode() const { return getContainerCode(); }
- inline void setOperationCode(MtpOperationCode code)
- { return setContainerCode(code); }
+ inline MtpOperationCode getOperationCode() const { return getContainerCode(); }
+ inline void setOperationCode(MtpOperationCode code)
+ { return setContainerCode(code); }
};