From mboxrd@z Thu Jan 1 00:00:00 1970 From: Lukasz Majewski Date: Thu, 12 Apr 2012 09:15:31 +0200 Subject: [U-Boot] [PATCH 4/4] usb:gadget: Extend device struct to device_data pointer In-Reply-To: <1334214931-19480-1-git-send-email-l.majewski@samsung.com> References: <1334214931-19480-1-git-send-email-l.majewski@samsung.com> Message-ID: <1334214931-19480-5-git-send-email-l.majewski@samsung.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Add device data pointer to the USB gadget's device struct. Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park Cc: Marek Vasut --- include/linux/usb/gadget.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/linux/usb/gadget.h b/include/linux/usb/gadget.h index b0a0e1f..eba865e 100644 --- a/include/linux/usb/gadget.h +++ b/include/linux/usb/gadget.h @@ -411,6 +411,7 @@ struct usb_gadget_ops { struct device { void *driver_data; /* data private to the driver */ + void *device_data; /* data private to the device */ }; /** -- 1.7.2.3