Changeset 598 for GPL/trunk/alsa-kernel/include/sound/jack.h
- Timestamp:
- Apr 3, 2017, 4:51:56 PM (8 years ago)
- Location:
- GPL/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk
-
Property svn:mergeinfo
set to
/GPL/branches/uniaud32-2.1.x merged eligible
-
Property svn:mergeinfo
set to
-
GPL/trunk/alsa-kernel/include/sound/jack.h
r426 r598 43 43 SND_JACK_VIDEOOUT = 0x0010, 44 44 SND_JACK_AVOUT = SND_JACK_LINEOUT | SND_JACK_VIDEOOUT, 45 46 /* Kept separate from switches to facilitate implementation */ 47 SND_JACK_BTN_0 = 0x4000, 48 SND_JACK_BTN_1 = 0x2000, 49 SND_JACK_BTN_2 = 0x1000, 50 SND_JACK_BTN_3 = 0x0800, 51 SND_JACK_BTN_4 = 0x0400, 52 SND_JACK_BTN_5 = 0x0200, 45 53 }; 46 54 … … 51 59 const char *id; 52 60 char name[100]; 61 unsigned int key[6]; /* Keep in sync with definitions above */ 53 62 void *private_data; 54 63 void (*private_free)(struct snd_jack *); … … 60 69 struct snd_jack **jack); 61 70 void snd_jack_set_parent(struct snd_jack *jack, struct device *parent); 71 int snd_jack_set_key(struct snd_jack *jack, enum snd_jack_types type, 72 int keytype); 62 73 63 74 void snd_jack_report(struct snd_jack *jack, int status);
Note:
See TracChangeset
for help on using the changeset viewer.