mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-26 14:17:26 -04:00
All these files have been updated in the commit given in the Fixes: tag
below.
When the SPDX-License-Identifier: has been added, the corresponding text at
the beginning of the files has not been deleted.
All these texts are about GPL-2.0+, with different variation in the
wording.
Remove these now useless lines to save some LoC.
Fixes: 5fd54ace47
("USB: add SPDX identifiers to all remaining files in drivers/usb/")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
22 lines
395 B
C
22 lines
395 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2013 ST-Ericsson AB
|
|
*/
|
|
|
|
#ifndef __MUSB_UX500_H__
|
|
#define __MUSB_UX500_H__
|
|
|
|
enum ux500_musb_vbus_id_status {
|
|
UX500_MUSB_NONE = 0,
|
|
UX500_MUSB_VBUS,
|
|
UX500_MUSB_ID,
|
|
UX500_MUSB_CHARGER,
|
|
UX500_MUSB_ENUMERATED,
|
|
UX500_MUSB_RIDA,
|
|
UX500_MUSB_RIDB,
|
|
UX500_MUSB_RIDC,
|
|
UX500_MUSB_PREPARE,
|
|
UX500_MUSB_CLEAN,
|
|
};
|
|
|
|
#endif /* __MUSB_UX500_H__ */
|