Home
last modified time | relevance | path

Searched refs:backup (Results 1 – 75 of 75) sorted by relevance

/linux-4.1.27/drivers/net/wireless/b43legacy/
Dradio.c386 u16 backup[20] = { 0 }; in b43legacy_calc_nrssi_offset() local
391 backup[0] = b43legacy_phy_read(dev, 0x0001); in b43legacy_calc_nrssi_offset()
392 backup[1] = b43legacy_phy_read(dev, 0x0811); in b43legacy_calc_nrssi_offset()
393 backup[2] = b43legacy_phy_read(dev, 0x0812); in b43legacy_calc_nrssi_offset()
394 backup[3] = b43legacy_phy_read(dev, 0x0814); in b43legacy_calc_nrssi_offset()
395 backup[4] = b43legacy_phy_read(dev, 0x0815); in b43legacy_calc_nrssi_offset()
396 backup[5] = b43legacy_phy_read(dev, 0x005A); in b43legacy_calc_nrssi_offset()
397 backup[6] = b43legacy_phy_read(dev, 0x0059); in b43legacy_calc_nrssi_offset()
398 backup[7] = b43legacy_phy_read(dev, 0x0058); in b43legacy_calc_nrssi_offset()
399 backup[8] = b43legacy_phy_read(dev, 0x000A); in b43legacy_calc_nrssi_offset()
[all …]
/linux-4.1.27/Documentation/devicetree/bindings/rtc/
Drtc-palmas.txt11 - ti,backup-battery-chargeable: The Palmas series device like TPS65913 or
12 TPS80036 supports the backup battery for powering the RTC when main
13 battery is removed or in very low power state. The backup battery
17 - ti,backup-battery-charge-high-current: Enable high current charging in
18 backup battery. Device supports the < 100mA and > 100mA charging.
29 ti,backup-battery-chargeable;
30 ti,backup-battery-charge-high-current;
/linux-4.1.27/drivers/net/wireless/b43/
Dphy_g.c424 u16 backup[20] = { 0 }; in b43_calc_nrssi_offset() local
429 backup[0] = b43_phy_read(dev, 0x0001); in b43_calc_nrssi_offset()
430 backup[1] = b43_phy_read(dev, 0x0811); in b43_calc_nrssi_offset()
431 backup[2] = b43_phy_read(dev, 0x0812); in b43_calc_nrssi_offset()
433 backup[3] = b43_phy_read(dev, 0x0814); in b43_calc_nrssi_offset()
434 backup[4] = b43_phy_read(dev, 0x0815); in b43_calc_nrssi_offset()
436 backup[5] = b43_phy_read(dev, 0x005A); in b43_calc_nrssi_offset()
437 backup[6] = b43_phy_read(dev, 0x0059); in b43_calc_nrssi_offset()
438 backup[7] = b43_phy_read(dev, 0x0058); in b43_calc_nrssi_offset()
439 backup[8] = b43_phy_read(dev, 0x000A); in b43_calc_nrssi_offset()
[all …]
Dwa.c35 u16 backup; in b43_wa_papd() local
37 backup = b43_ofdmtab_read16(dev, B43_OFDMTAB_PWRDYN2, 0); in b43_wa_papd()
41 b43_ofdmtab_write16(dev, B43_OFDMTAB_PWRDYN2, 0, backup); in b43_wa_papd()
/linux-4.1.27/drivers/power/
Dwm831x_backup.c24 struct power_supply *backup; member
52 if (!wm831x_pdata || !wm831x_pdata->backup) { in wm831x_config_backup()
58 pdata = wm831x_pdata->backup; in wm831x_config_backup()
197 devdata->backup = power_supply_register(&pdev->dev, in wm831x_backup_probe()
200 return PTR_ERR_OR_ZERO(devdata->backup); in wm831x_backup_probe()
207 power_supply_unregister(devdata->backup); in wm831x_backup_remove()
DKconfig23 backup batteries, and optional builtin charger.
47 tristate "WM831X backup battery charger support"
50 Say Y here to enable support for the backup battery charger
/linux-4.1.27/drivers/gpu/drm/vmwgfx/
Dvmwgfx_resource.c127 if (res->backup) { in vmw_resource_release()
128 struct ttm_buffer_object *bo = &res->backup->base; in vmw_resource_release()
142 vmw_dmabuf_unreference(&res->backup); in vmw_resource_release()
230 res->backup = NULL; in vmw_resource_init()
1088 struct vmw_dma_buffer *backup; in vmw_resource_buf_alloc() local
1091 if (likely(res->backup)) { in vmw_resource_buf_alloc()
1092 BUG_ON(res->backup->base.num_pages * PAGE_SIZE < size); in vmw_resource_buf_alloc()
1096 backup = kzalloc(sizeof(*backup), GFP_KERNEL); in vmw_resource_buf_alloc()
1097 if (unlikely(backup == NULL)) in vmw_resource_buf_alloc()
1100 ret = vmw_dmabuf_init(res->dev_priv, backup, res->backup_size, in vmw_resource_buf_alloc()
[all …]
Dvmwgfx_surface.c852 &res->backup, in vmw_surface_define_ioctl()
1316 &res->backup, in vmw_gb_surface_define_ioctl()
1325 &res->backup, in vmw_gb_surface_define_ioctl()
1348 if (res->backup) { in vmw_gb_surface_define_ioctl()
1350 drm_vma_node_offset_addr(&res->backup->base.vma_node); in vmw_gb_surface_define_ioctl()
1351 rep->buffer_size = res->backup->base.num_pages * PAGE_SIZE; in vmw_gb_surface_define_ioctl()
1400 if (srf->res.backup == NULL) { in vmw_gb_surface_reference_ioctl()
1406 ret = vmw_user_dmabuf_reference(tfile, srf->res.backup, in vmw_gb_surface_reference_ioctl()
1430 drm_vma_node_offset_addr(&srf->res.backup->base.vma_node); in vmw_gb_surface_reference_ioctl()
1431 rep->crep.buffer_size = srf->res.backup->base.num_pages * PAGE_SIZE; in vmw_gb_surface_reference_ioctl()
Dvmwgfx_shader.c120 res->backup = vmw_dmabuf_reference(byte_code); in vmw_gb_shader_init()
219 BUG_ON(res->backup->base.mem.mem_type != VMW_PL_MOB); in vmw_gb_shader_unbind()
Dvmwgfx_drv.h114 struct vmw_dma_buffer *backup; member
Dvmwgfx_execbuf.c382 if (res->backup) { in vmw_resources_reserve()
383 struct ttm_buffer_object *bo = &res->backup->base; in vmw_resources_reserve()
/linux-4.1.27/Documentation/devicetree/bindings/power/
Dtwl-charger.txt10 - ti,bb-uvolt: microvolts for charging the backup battery.
11 - ti,bb-uamp: microamps for charging the backup battery.
/linux-4.1.27/include/net/
Dbonding.h162 u8 backup:1, /* indicates backup slave. Value corresponds with member
317 if (slave->backup) { in bond_set_active_slave()
318 slave->backup = 0; in bond_set_active_slave()
326 if (!slave->backup) { in bond_set_backup_slave()
327 slave->backup = 1; in bond_set_backup_slave()
336 if (slave->backup == slave_state) in bond_set_slave_state()
339 slave->backup = slave_state; in bond_set_slave_state()
380 return slave->backup; in bond_slave_state()
/linux-4.1.27/arch/arm/probes/uprobes/
Dactions-arm.c75 autask->backup = regs->uregs[pcreg]; in uprobe_set_pc()
84 regs->uregs[auprobe->pcreg] = autask->backup; in uprobe_unset_pc()
94 regs->uregs[pcreg] = autask->backup; in uprobe_aluwrite_pc()
104 regs->uregs[pcreg] = autask->backup; in uprobe_write_pc()
/linux-4.1.27/arch/sh/boards/mach-hp6xx/
Dhp6xx_apm.c34 int battery, backup, charging, percentage; in hp6x0_apm_get_power_status() local
38 backup = adc_single(ADC_CHANNEL_BACKUP); in hp6x0_apm_get_power_status()
/linux-4.1.27/fs/ocfs2/
Dresize.c182 struct buffer_head *backup = NULL; in update_backups() local
193 ret = ocfs2_read_blocks_sync(osb, blkno, 1, &backup); in update_backups()
199 memcpy(backup->b_data, data, inode->i_sb->s_blocksize); in update_backups()
201 backup_di = (struct ocfs2_dinode *)backup->b_data; in update_backups()
204 ret = ocfs2_write_super_or_backup(osb, backup); in update_backups()
205 brelse(backup); in update_backups()
206 backup = NULL; in update_backups()
/linux-4.1.27/arch/arm/boot/dts/
Darmada-370-netgear-rn104.dts204 blue-backup-led {
205 label = "rn104:blue:backup";
248 backup-button {
281 backup_button_pin: backup-button-pin {
291 backup_led_pin: backup-led-pin {
Darmada-370-netgear-rn102.dts212 blue-backup-led {
213 label = "rn102:blue:backup";
238 backup-button {
269 backup_led_pin: backup-led-pin {
274 backup_button_pin: backup-button-pin {
Dkirkwood-iomega_ix2_200.dts42 pmx_led_backup: pmx-led-backup {
70 pmx_led_backup_brt_ctrl_1: pmx-led-backup-brt-ctrl-1 {
74 pmx_led_backup_brt_ctrl_2: pmx-led-backup-brt-ctrl-2 {
Dkirkwood-netgear_readynas_duo_v2.dts48 pmx_button_backup: pmx-button-backup {
78 pmx_led_blue_backup: pmx-led-blue-backup {
177 backup-button {
Dkirkwood-netgear_readynas_nv+_v2.dts50 pmx_button_backup: pmx-button-backup {
65 pmx_led_blue_backup: pmx-led-blue-backup {
189 backup-button {
Dam437x-idk-evm.dts351 label = "QSPI.U_BOOT.backup";
363 label = "QSPI.U-BOOT-ENV.backup";
Dam437x-sk-evm.dts585 label = "QSPI.U_BOOT.backup";
597 label = "QSPI.U-BOOT-ENV.backup";
Dam43x-epos-evm.dts627 label = "QSPI.U_BOOT.backup";
639 label = "QSPI.U-BOOT-ENV.backup";
Domap3-pandora-common.dtsi395 /* backup battery charger */
/linux-4.1.27/drivers/staging/rtl8188eu/hal/
Dphy.c898 u32 *backup, u32 register_num) in save_adda_registers() argument
903 backup[i] = phy_query_bb_reg(adapt, addareg[i], bMaskDWord); in save_adda_registers()
908 u32 *backup) in save_mac_registers() argument
913 backup[i] = usb_read8(adapt, mac_reg[i]); in save_mac_registers()
915 backup[i] = usb_read32(adapt, mac_reg[i]); in save_mac_registers()
919 u32 *backup, u32 regiester_num) in reload_adda_reg() argument
924 phy_set_bb_reg(adapt, adda_reg[i], bMaskDWord, backup[i]); in reload_adda_reg()
928 u32 *mac_reg, u32 *backup) in reload_mac_registers() argument
933 usb_write8(adapt, mac_reg[i], (u8)backup[i]); in reload_mac_registers()
935 usb_write32(adapt, mac_reg[i], backup[i]); in reload_mac_registers()
[all …]
/linux-4.1.27/Documentation/hwmon/
Dda905228 Channel 9: VBBAT - measurement of the backup battery voltage
42 The backup battery voltage is calculated as:
/linux-4.1.27/arch/arm/include/asm/
Duprobes.h26 u32 backup; member
/linux-4.1.27/drivers/net/team/
DKconfig53 tristate "Active-backup mode support"
57 for backup.
/linux-4.1.27/include/linux/mfd/wm831x/
Dpdata.h133 struct wm831x_backup_pdata *backup; member
/linux-4.1.27/Documentation/networking/
Dbonding.txt167 (active-backup, balance-alb and balance-tlb). Possible values
287 backup or 2
289 Validation is performed only for backup slaves.
308 only for backup slaves.
317 that they were generated by an arp_ip_target. Since backup slaves
319 for backup slaves is on the broadcast ARP request sent out via the
321 configurations may result in situations wherein the backup slaves
323 of backup slaves must be disabled.
325 The validation of ARP requests on backup slaves is mainly helping
328 backup slave will work if it's selected as the next active slave.
[all …]
Dipvs-sysctl.txt23 in backup mode to avoid packet loops for DR/TUN methods.
215 sloppy_sctp flags on backup servers. For non-persistent services
Dxfrm_sync.txt16 This way a backup stays as closely uptodate as an active member.
/linux-4.1.27/drivers/staging/lustre/lustre/obdclass/
Dllog.c946 char *name, char *backup) in llog_backup() argument
970 rc = llog_erase(env, bctxt, NULL, backup); in llog_backup()
975 rc = llog_open_create(env, bctxt, &bllh, NULL, backup); in llog_backup()
978 obd->obd_name, backup, rc); in llog_backup()
985 obd->obd_name, name, backup, llh->lgh_obj, in llog_backup()
/linux-4.1.27/fs/nilfs2/
DKconfig18 its writable mount, and this feature is convenient for online backup.
/linux-4.1.27/Documentation/ide/
DChangeLog.ide-tape.1995-20023 * Ver 0.2 Nov 23 95 A short backup (few megabytes) and restore procedure
6 * A longer backup resulted in major swapping, bad
13 * from the background backup procedure.
84 * user backup program. On my tape drive, it sometimes
110 * during a backup/restore procedure is supported. The
Dide-tape.txt36 2. No buffering is performed by the user backup program.
/linux-4.1.27/Documentation/filesystems/
Decryptfs.txt14 maintain a backup copy of any data you write into eCryptfs.
Djfs.txt22 from backup media. The integrity of the volume is not
Dafs.txt98 The name of the volume can be suffixes with ".backup" or ".readonly" to
Daffs.txt168 restore or repair your RDB. So please do make a backup copy of it
Dnilfs2.txt20 for online backup.
Dbtrfs.txt33 * Efficient incremental backup and FS mirroring (not yet implemented)
Dext2.txt108 to mounting the filesystem. Since it is so important, backup copies of
113 filesystems, later revisions can optionally reduce the number of backup
Dvfat.txt64 escaped sequences. This would let you backup and
Dntfs.txt183 the boot sector from the backup copy.
Dext4.txt588 and copy data from the backup. Note, that
/linux-4.1.27/Documentation/ABI/testing/
Dsysfs-driver-genwqe21 Description: Currently active bitstream. 1 is default, 0 is backup.
/linux-4.1.27/drivers/net/wireless/p54/
DKconfig64 backup set of generic values to get the device working.
/linux-4.1.27/Documentation/fb/
Dudlfb.txt131 backup in case reading the actual EDID of the monitor
136 monitor (or last backup value written). This is
/linux-4.1.27/Documentation/device-mapper/
Dera.txt10 Use cases include tracking changed blocks for backup software, and
/linux-4.1.27/
DREADME83 the backup files (some-file-name~ or some-file-name.orig), and make sure
279 - Keep a backup kernel handy in case something goes wrong. This is
282 backup of the modules corresponding to that kernel, as well. If you
284 working kernel, make a backup of your modules directory before you
/linux-4.1.27/drivers/dma/
Dste_dma40.c501 u32 *backup; member
2974 static void dma40_backup(void __iomem *baseaddr, u32 *backup, in dma40_backup() argument
2983 backup[i] = readl_relaxed(addr); in dma40_backup()
2985 writel_relaxed(backup[i], addr); in dma40_backup()
3016 if (base->gen_dmac.backup) in d40_save_restore_registers()
3018 base->gen_dmac.backup, in d40_save_restore_registers()
3259 base->gen_dmac.backup = d40_backup_regs_v4b; in d40_hw_detect_init()
3273 base->gen_dmac.backup = d40_backup_regs_v4a; in d40_hw_detect_init()
/linux-4.1.27/Documentation/scsi/
DNinjaSCSI.txt111 your data. Please backup your data when you use this driver.
Dosst.txt82 You may use the OnStream tape driver with your standard backup software,
95 for creating and restoring a full backup:
DChangeLog.megaraid_sas502 mode only when the controller has battery backup. At this time
Dtmscsim.txt91 precautions. In an ideal world you would have a full backup of your disks.
/linux-4.1.27/Documentation/i2c/busses/
Di2c-piix461 updates first, for example), and backup first! An even more dangerous
/linux-4.1.27/arch/arm/mach-s3c64xx/
Dmach-crag6410.c561 .backup = &banff_backup_pdata,
/linux-4.1.27/drivers/staging/lustre/lustre/include/
Dlustre_log.h140 char *name, char *backup);
/linux-4.1.27/Documentation/sound/alsa/
Dhdspm.txt208 backup connection.
/linux-4.1.27/arch/parisc/kernel/
Dperf_asm.S99 ;* is shifted shifted backup immediately. This is to compensate
/linux-4.1.27/drivers/rtc/
DKconfig191 chips (often with battery backup) connected with I2C. This driver
199 the RTC/NVRAM backup power, and alarms. NVRAM is visible in
1249 this is powered by the backup power supply.
1257 can be used as an RTC thanks to the backup power supply (e.g. a
/linux-4.1.27/drivers/net/wireless/rtlwifi/btcoexist/
Dhalbtc8723b1ant.c2302 bool backup) in halbtc8723b1ant_init_hw_config() argument
2311 if (backup) {/* backup rf 0x1e value */ in halbtc8723b1ant_init_hw_config()
Dhalbtc8192e2ant.c3210 bool backup) in halbtc8192e2ant_init_hwconfig() argument
3218 if (backup) { in halbtc8192e2ant_init_hwconfig()
/linux-4.1.27/scripts/
Dspelling.txt156 bakup||backup
/linux-4.1.27/net/netfilter/
DKconfig171 tristate "Amanda backup protocol support"
176 If you are running the Amanda backup package <http://www.amanda.org/>
180 Amanda requires for communication of the backup data, messages and
/linux-4.1.27/Documentation/filesystems/caching/
Dfscache.txt171 indices for the read-write, read-only and backup mirrors of those volumes.
/linux-4.1.27/Documentation/development-process/
D5.Posting186 the build process, for example, or editor backup files) in the patch. The
/linux-4.1.27/Documentation/usb/
Dusb-serial.txt103 is done, you can transfer files, backup, download email etc. The most
/linux-4.1.27/drivers/staging/speakup/
Dspkguide.txt920 source tree, make sure you make a backup of it before you start making
931 names on the right side of the = (equals) sign. You did make a backup,
963 from the working map. Be extremely careful, and always make a backup!
/linux-4.1.27/drivers/video/fbdev/sis/
Dinit301.c3110 unsigned short CRT2Index, ResIndex, backup; in SiS_GetCRT2DataLVDS() local
3137 backup = SiS_Pr->SiS_IF_DEF_LVDS; in SiS_GetCRT2DataLVDS()
3145 SiS_Pr->SiS_IF_DEF_LVDS = backup; in SiS_GetCRT2DataLVDS()
/linux-4.1.27/Documentation/cdrom/
Dcdrom-standard.tex956 \item Make a backup of your current driver.
/linux-4.1.27/drivers/scsi/
DKconfig1337 have a bootable disk and a backup in case of emergency.
/linux-4.1.27/Documentation/
Dkernel-parameters.txt1205 primary GPT is corrupted, it enables the backup/alternate