cregit-Linux how code gets into the kernel

Release 4.11 arch/arm/mach-shmobile/suspend.c

/*
 * Suspend-to-RAM support code for SH-Mobile ARM
 *
 *  Copyright (C) 2011 Magnus Damm
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 */

#include <linux/pm.h>
#include <linux/suspend.h>
#include <linux/module.h>
#include <linux/err.h>
#include <linux/cpu.h>

#include <asm/io.h>
#include <asm/system_misc.h>

#include "common.h"


static int shmobile_suspend_default_enter(suspend_state_t suspend_state) { cpu_do_idle(); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Magnus Damm15100.00%1100.00%
Total15100.00%1100.00%


static int shmobile_suspend_begin(suspend_state_t state) { cpu_idle_poll_ctrl(true); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Magnus Damm1376.47%150.00%
Thomas Gleixner423.53%150.00%
Total17100.00%2100.00%


static void shmobile_suspend_end(void) { cpu_idle_poll_ctrl(false); }

Contributors

PersonTokensPropCommitsCommitProp
Magnus Damm969.23%150.00%
Thomas Gleixner430.77%150.00%
Total13100.00%2100.00%

struct platform_suspend_ops shmobile_suspend_ops = { .begin = shmobile_suspend_begin, .end = shmobile_suspend_end, .enter = shmobile_suspend_default_enter, .valid = suspend_valid_only_mem, };
int __init shmobile_suspend_init(void) { suspend_set_ops(&shmobile_suspend_ops); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Magnus Damm17100.00%1100.00%
Total17100.00%1100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Magnus Damm9785.84%125.00%
Thomas Gleixner119.73%125.00%
Geert Uytterhoeven32.65%125.00%
David Howells21.77%125.00%
Total113100.00%4100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.