sleep.S (ac94be498f84f7327533b62faca4c3da64434904) | sleep.S (fb01eb36518f525a6b4e8d829e1127e6a82d7623) |
---|---|
1/* SPDX-License-Identifier: GPL-2.0-only */ 2/* | 1/* SPDX-License-Identifier: GPL-2.0-only */ 2/* |
3 * (C) Copyright 2009, Texas Instruments, Inc. http://www.ti.com/ | 3 * (C) Copyright 2009, Texas Instruments, Inc. https://www.ti.com/ |
4 */ 5 6/* replicated define because linux/bitops.h cannot be included in assembly */ 7#define BIT(nr) (1 << (nr)) 8 9#include <linux/linkage.h> 10#include <asm/assembler.h> 11#include "psc.h" --- 205 unchanged lines hidden --- | 4 */ 5 6/* replicated define because linux/bitops.h cannot be included in assembly */ 7#define BIT(nr) (1 << (nr)) 8 9#include <linux/linkage.h> 10#include <asm/assembler.h> 11#include "psc.h" --- 205 unchanged lines hidden --- |