/* * AESS IP block reset * * Copyright (C) 2012 Texas Instruments, Inc. * Paul Walmsley * * 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 version 2. * * This program is distributed "as is" WITHOUT ANY WARRANTY of any * kind, whether express or implied; 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, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA */ #ifndef __SOUND_AESS_H__ #define __SOUND_AESS_H__ #include #include /* * AESS_AUTO_GATING_ENABLE_OFFSET: offset in bytes of the AESS IP * block's AESS_AUTO_GATING_ENABLE__1 register from the IP block's * base address */ #define AESS_AUTO_GATING_ENABLE_OFFSET 0x07c /* Register bitfields in the AESS_AUTO_GATING_ENABLE__1 register */ #define AESS_AUTO_GATING_ENABLE_SHIFT 0 /** * aess_enable_autogating - enable AESS internal autogating * @oh: struct omap_hwmod * * * Enable internal autogating on the AESS. This allows the AESS to * indicate that it is idle to the OMAP PRCM. Returns 0. */ static inline void aess_enable_autogating(void __iomem *base) { u32 v; /* Set AESS_AUTO_GATING_ENABLE__1.ENABLE to allow idle entry */ v = 1 << AESS_AUTO_GATING_ENABLE_SHIFT; writel(v, base + AESS_AUTO_GATING_ENABLE_OFFSET); } #endif /* __SOUND_AESS_H__ */ 546d9d0756c529ad3ce'>refslogtreecommitdiff
tion>
AgeCommit message (Expand)AuthorFilesLines
space:
mode:
authorEric Dumazet <edumazet@google.com>2017-02-10 05:46:46 -0800
committerDavid S. Miller <davem@davemloft.net>2017-02-13 22:23:39 -0500
commit37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7 (patch)
tree767cf16a3f51ff5f4c2181ecd892ed5fbc53a3bc /include/net
parent417d18d38bc63201f6442810476048d2984054c0 (diff)
net: busy-poll: remove LL_FLUSH_FAILED and LL_FLUSH_BUSY
Commit 79e7fff47b7b ("net: remove support for per driver ndo_busy_poll()") made them obsolete. Signed-off-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r--include/net/busy_poll.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/net/busy_poll.h b/include/net/busy_poll.h