driver_chipcommon.c (d4d9781d1dd04ff134e3d43383dfa9991f7c54c6) | driver_chipcommon.c (44a8e3772f53a5337e74700fc166a3d4c3ef59a2) |
---|---|
1/* 2 * Broadcom specific AMBA 3 * ChipCommon core driver 4 * 5 * Copyright 2005, Broadcom Corporation 6 * Copyright 2006, 2007, Michael Buesch <m@bues.ch> 7 * 8 * Licensed under the GNU/GPL. See COPYING for details. 9 */ 10 11#include "bcma_private.h" | 1/* 2 * Broadcom specific AMBA 3 * ChipCommon core driver 4 * 5 * Copyright 2005, Broadcom Corporation 6 * Copyright 2006, 2007, Michael Buesch <m@bues.ch> 7 * 8 * Licensed under the GNU/GPL. See COPYING for details. 9 */ 10 11#include "bcma_private.h" |
12#include <linux/export.h> |
|
12#include <linux/bcma/bcma.h> 13 14static inline u32 bcma_cc_write32_masked(struct bcma_drv_cc *cc, u16 offset, 15 u32 mask, u32 value) 16{ 17 value &= mask; 18 value |= bcma_cc_read32(cc, offset) & ~mask; 19 bcma_cc_write32(cc, offset, value); --- 137 unchanged lines hidden --- | 13#include <linux/bcma/bcma.h> 14 15static inline u32 bcma_cc_write32_masked(struct bcma_drv_cc *cc, u16 offset, 16 u32 mask, u32 value) 17{ 18 value &= mask; 19 value |= bcma_cc_read32(cc, offset) & ~mask; 20 bcma_cc_write32(cc, offset, value); --- 137 unchanged lines hidden --- |