aboutsummaryrefslogtreecommitdiffstats
path: root/package/kernel/linux/modules/sound.mk
Commit message (Expand)AuthorAgeFilesLines
* modules: package VIA AC97 modulesJohn Crispin2015-10-261-0/+34
* package/kernel: remove reference to ep93xx targetNicolas Thill2015-05-241-1/+1
* modules/sound: cleanup by removing unsupported Kernel casesJohn Crispin2015-05-231-10/+0
* kernel: remove useless AddDepends/input abstractionFelix Fietkau2015-03-291-4/+2
* build: remove leftover olpc support codeFelix Fietkau2015-03-281-16/+0
* kernel: drop obsolete kernel version checksFelix Fietkau2015-01-241-22/+3
* kernel: fix kmod-sound-core for 3.14Jonas Gorski2014-04-041-2/+8
* modules: make kmod-pcspkr depend on X86Florian Fainelli2014-03-201-1/+1
* kernel: module updates for 3.12Luka Perkov2013-12-091-0/+13
* kernel/modules: snd-pcm-dmaengine only if CONFIG_SND_DMAENGINE_PCM is setJohn Crispin2013-11-251-2/+2
* kernel: add new core sound module snd-pcm-dmaengine.ko for 3.12 kernels and a...Zoltan Herpai2013-11-121-0/+8
* kernel: imx6: add modules needed for sgtl5000 audio codecLuka Perkov2013-10-161-6/+10
* ep93xx: fix sound dependencies for ep93xxHauke Mehrtens2013-10-011-1/+1
* kernel: make sound-soc-core depend on kmod-ac97Felix Fietkau2013-09-271-1/+1
* kernel: be consistent with formatting styleLuka Perkov2013-07-261-3/+3
* kernel: add sound-soc-imx-sgtl5000Luka Perkov2013-07-151-0/+16
* kernel: add sound-soc-imxLuka Perkov2013-07-151-1/+22
* packages: clean up the package folderJohn Crispin2013-06-211-0/+220
ape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
/*
 * Copyright (C) 2015 Dominik Schürmann <dominik@dominikschuermann.de>
 * Copyright (C) 2015 Vincent Breitmoser <v.breitmoser@mugenguild.com>
 * Copyright (C) 2015 Adithya Abraham Philip <adithyaphilip@gmail.com>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

package org.sufficientlysecure.keychain.service;

import android.os.Parcel;
import android.os.Parcelable;

public class KeybaseVerificationParcel implements Parcelable {

    public String mKeybaseProof;
    public String mRequiredFingerprint;

    public KeybaseVerificationParcel(String keybaseProof, String requiredFingerprint) {
        mKeybaseProof = keybaseProof;
        mRequiredFingerprint = requiredFingerprint;
    }

    protected KeybaseVerificationParcel(Parcel in) {
        mKeybaseProof = in.readString();
        mRequiredFingerprint = in.readString();
    }

    @Override
    public int describeContents() {
        return 0;
    }

    @Override
    public void writeToParcel(Parcel dest, int flags) {
        dest.writeString(mKeybaseProof);
        dest.writeString(mRequiredFingerprint);
    }

    public static final Parcelable.Creator<KeybaseVerificationParcel> CREATOR = new Parcelable.Creator<KeybaseVerificationParcel>() {
        @Override
        public KeybaseVerificationParcel createFromParcel(Parcel in) {
            return new KeybaseVerificationParcel(in);
        }

        @Override
        public KeybaseVerificationParcel[] newArray(int size) {
            return new KeybaseVerificationParcel[size];
        }
    };
}