| /linux-4.1.27/drivers/input/ |
| D | matrix-keymap.c | 31 unsigned int rows, unsigned int cols, in matrix_keypad_map_key() argument 39 if (row >= rows || col >= cols) { in matrix_keypad_map_key() 42 __func__, key, row, col, rows, cols); in matrix_keypad_map_key() 54 unsigned int *rows, unsigned int *cols) in matrix_keypad_parse_of_params() argument 63 of_property_read_u32(np, "keypad,num-columns", cols); in matrix_keypad_parse_of_params() 64 if (!*rows || !*cols) { in matrix_keypad_parse_of_params() 74 unsigned int rows, unsigned int cols, in matrix_keypad_parse_of_keymap() argument 79 unsigned int row_shift = get_count_order(cols); in matrix_keypad_parse_of_keymap() 112 if (!matrix_keypad_map_key(input_dev, rows, cols, in matrix_keypad_parse_of_keymap() 121 unsigned int rows, unsigned int cols, in matrix_keypad_parse_of_keymap() argument [all …]
|
| /linux-4.1.27/drivers/input/keyboard/ |
| D | cros_ec_keyb.c | 50 unsigned int cols; member 86 for (col1 = 0; col1 < ckdev->cols; col1++) { in cros_ec_keyb_has_ghosting() 88 for (col2 = col1 + 1; col2 < ckdev->cols; col2++) { in cros_ec_keyb_has_ghosting() 128 for (col = 0; col < ckdev->cols; col++) { in cros_ec_keyb_process() 154 .insize = ckdev->cols, in cros_ec_keyb_get_state() 161 memcpy(kb_state, msg.indata, ckdev->cols); in cros_ec_keyb_get_state() 171 uint8_t kb_state[ckdev->cols]; in cros_ec_keyb_irq() 216 for (col = 0; col < ckdev->cols; col++) { in cros_ec_keyb_compute_valid_keys() 244 &ckdev->cols); in cros_ec_keyb_probe() 248 ckdev->valid_keys = devm_kzalloc(&pdev->dev, ckdev->cols, GFP_KERNEL); in cros_ec_keyb_probe() [all …]
|
| D | tca8418_keypad.c | 235 u32 rows, u32 cols) in tca8418_configure() argument 248 reg += (~(~0 << cols)) << 8; in tca8418_configure() 272 u32 rows = 0, cols = 0; in tca8418_keypad_probe() local 286 cols = pdata->cols; in tca8418_keypad_probe() 293 err = matrix_keypad_parse_of_params(dev, &rows, &cols); in tca8418_keypad_probe() 304 if (!cols || cols > TCA8418_MAX_COLS) { in tca8418_keypad_probe() 316 row_shift = get_count_order(cols); in tca8418_keypad_probe() 328 error = tca8418_configure(keypad_data, rows, cols); in tca8418_keypad_probe() 345 error = matrix_keypad_build_keymap(keymap_data, NULL, rows, cols, in tca8418_keypad_probe()
|
| D | omap-keypad.c | 56 unsigned int cols; member 72 for (col = 0; col < omap_kp->cols; col++) in set_col_gpio_val() 116 for (col = 0; col < omap_kp->cols; col++) { in omap_kp_scan_keypad() 133 unsigned int row_shift = get_count_order(omap_kp_data->cols); in omap_kp_tasklet() 142 for (col = 0; col < omap_kp_data->cols; col++) { in omap_kp_tasklet() 254 if (!pdata->rows || !pdata->cols || !pdata->keymap_data) { in omap_kp_probe() 259 row_shift = get_count_order(pdata->cols); in omap_kp_probe() 287 omap_kp->cols = pdata->cols; in omap_kp_probe() 316 pdata->rows, pdata->cols, in omap_kp_probe()
|
| D | stmpe-keypad.c | 128 unsigned int cols; member 212 if (keypad->cols & (1 << i)) { in stmpe_keypad_altfunc_init() 276 ret = stmpe_reg_write(stmpe, STMPE_KPC_COL, keypad->cols); in stmpe_keypad_chip_init() 316 keypad->cols |= 1 << col; in stmpe_keypad_fill_used_pins() 329 u32 cols; in stmpe_keypad_probe() local 357 error = matrix_keypad_parse_of_params(&pdev->dev, &rows, &cols); in stmpe_keypad_probe() 361 error = matrix_keypad_build_keymap(NULL, NULL, rows, cols, in stmpe_keypad_probe() 370 stmpe_keypad_fill_used_pins(keypad, rows, cols); in stmpe_keypad_probe()
|
| D | samsung-keypad.c | 78 unsigned int cols; member 89 for (col = 0; col < keypad->cols; col++) { in samsung_keypad_scan() 119 for (col = 0; col < keypad->cols; col++) { in samsung_keypad_report() 273 pdata->cols = num_cols; in samsung_keypad_parse_dt() 344 if (!pdata->cols || pdata->cols > SAMSUNG_MAX_COLS) in samsung_keypad_probe() 349 pdata->cfg_gpio(pdata->rows, pdata->cols); in samsung_keypad_probe() 351 row_shift = get_count_order(pdata->cols); in samsung_keypad_probe() 384 keypad->cols = pdata->cols; in samsung_keypad_probe() 402 pdata->rows, pdata->cols, in samsung_keypad_probe()
|
| D | bf54x-keys.c | 186 if (!pdata->rows || !pdata->cols || !pdata->keymap) { in bfin_kpad_probe() 192 pdata->keymapsize > (pdata->rows * pdata->cols)) { in bfin_kpad_probe() 238 if (peripheral_request_list((u16 *)&per_cols[MAX_RC - pdata->cols], in bfin_kpad_probe() 307 bfin_write_KPAD_CTL((((pdata->cols - 1) << 13) & KPAD_COLEN) | in bfin_kpad_probe() 322 peripheral_free_list((u16 *)&per_cols[MAX_RC - pdata->cols]); in bfin_kpad_probe() 344 peripheral_free_list((u16 *)&per_cols[MAX_RC - pdata->cols]); in bfin_kpad_remove()
|
| D | omap4-keypad.c | 79 unsigned int cols; member 145 for (col = 0; col < keypad_data->cols; col++) { in omap4_keypad_irq_thread_fn() 227 &keypad_data->cols); in omap4_keypad_parse_dt() 338 keypad_data->row_shift = get_count_order(keypad_data->cols); in omap4_keypad_probe() 349 keypad_data->rows, keypad_data->cols, in omap4_keypad_probe()
|
| D | pmic8xxx-keypad.c | 510 unsigned int rows, cols; in pmic8xxx_kp_probe() local 517 rc = matrix_keypad_parse_of_params(&pdev->dev, &rows, &cols); in pmic8xxx_kp_probe() 521 if (cols > PM8XXX_MAX_COLS || rows > PM8XXX_MAX_ROWS || in pmic8xxx_kp_probe() 522 cols < PM8XXX_MIN_COLS) { in pmic8xxx_kp_probe() 543 kp->num_cols = cols; in pmic8xxx_kp_probe()
|
| D | adp5588-keys.c | 169 for (i = 0; i < pdata->cols; i++) in adp5588_build_gpiomap() 338 ret |= adp5588_write(client, KP_GPIO2, KP_SEL(pdata->cols) & 0xFF); in adp5588_setup() 339 ret |= adp5588_write(client, KP_GPIO3, KP_SEL(pdata->cols) >> 8); in adp5588_setup() 453 if (!pdata->rows || !pdata->cols || !pdata->keymap) { in adp5588_probe() 487 if (pin - GPI_PIN_COL_BASE + 1 <= pdata->cols) { in adp5588_probe()
|
| D | tc3589x-keypad.c | 326 u32 cols, rows; in tc3589x_keypad_of_probe() local 337 of_property_read_u32(np, "keypad,num-columns", &cols); in tc3589x_keypad_of_probe() 339 plat->kcol = (u8) cols; in tc3589x_keypad_of_probe()
|
| D | pxa27x_keypad.c | 126 u32 rows, cols; in pxa27x_keypad_matrix_key_parse_dt() local 129 error = matrix_keypad_parse_of_params(dev, &rows, &cols); in pxa27x_keypad_matrix_key_parse_dt() 133 if (rows > MAX_MATRIX_KEY_ROWS || cols > MAX_MATRIX_KEY_COLS) { in pxa27x_keypad_matrix_key_parse_dt() 139 pdata->matrix_key_cols = cols; in pxa27x_keypad_matrix_key_parse_dt()
|
| D | twl4030_keypad.c | 363 if (!pdata->rows || !pdata->cols || !pdata->keymap_data) { in twl4030_kp_probe() 369 kp->n_cols = pdata->cols; in twl4030_kp_probe()
|
| /linux-4.1.27/arch/x86/boot/compressed/ |
| D | misc.c | 124 static int lines, cols; variable 154 memcpy(vidmem, vidmem + cols * 2, (lines - 1) * cols * 2); in scroll() 155 for (i = (lines - 1) * cols * 2; i < lines * cols * 2; i += 2) in scroll() 188 lines == 0 && cols == 0) in __putstr() 202 vidmem[(x + cols * y) * 2] = c; in __putstr() 203 if (++x >= cols) { in __putstr() 216 pos = (x + cols * y) * 2; /* Update cursor position */ in __putstr() 394 cols = real_mode->screen_info.orig_video_cols; in decompress_kernel()
|
| /linux-4.1.27/arch/mips/jz4740/ |
| D | setup.c | 34 u32 ctrl, bus, bank, rows, cols; in jz4740_detect_mem() local 41 cols = 8 + ((ctrl >> 26) & 7); in jz4740_detect_mem() 45 bus, bank, rows, cols); in jz4740_detect_mem() 48 size = 1 << (bus + bank + cols + rows); in jz4740_detect_mem()
|
| /linux-4.1.27/sound/pci/asihpi/ |
| D | hpidebug.c | 64 int cols = 8; in hpi_debug_data() local 66 lines = (len + cols - 1) / cols; in hpi_debug_data() 73 for (k = 0; k < cols && i < len; i++, k++) in hpi_debug_data()
|
| /linux-4.1.27/include/linux/input/ |
| D | matrix_keypad.h | 80 unsigned int rows, unsigned int cols, 94 unsigned int *rows, unsigned int *cols); 97 unsigned int *rows, unsigned int *cols) in matrix_keypad_parse_of_params() argument
|
| D | samsung-keypad.h | 36 unsigned int cols; member 40 void (*cfg_gpio)(unsigned int rows, unsigned int cols);
|
| D | tca8418_keypad.h | 39 unsigned cols; member
|
| /linux-4.1.27/drivers/usb/misc/sisusbvga/ |
| D | sisusb_con.c | 209 int cols, rows; in sisusbcon_init() local 243 cols = 80; in sisusbcon_init() 263 c->vc_cols = cols; in sisusbcon_init() 266 vc_resize(c, cols, rows); in sisusbcon_init() 430 int i, length, cols; in sisusbcon_clear() local 447 cols = sisusb->sisusb_num_columns; in sisusbcon_clear() 449 if (width > cols) in sisusbcon_clear() 450 width = cols; in sisusbcon_clear() 454 sisusbcon_memsetw(dest, eattr, height * cols * 2); in sisusbcon_clear() 458 for (i = height; i > 0; i--, dest += cols) in sisusbcon_clear() [all …]
|
| /linux-4.1.27/arch/mips/bcm63xx/ |
| D | cpu.c | 258 unsigned int cols = 0, rows = 0, is_32bits = 0, banks = 0; in detect_memory_size() local 272 cols = (val & SDRAM_CFG_COL_MASK) >> SDRAM_CFG_COL_SHIFT; in detect_memory_size() 280 cols = (val & MEMC_CFG_COL_MASK) >> MEMC_CFG_COL_SHIFT; in detect_memory_size() 289 cols += 8; in detect_memory_size() 291 return 1 << (cols + rows + (is_32bits + 1) + banks); in detect_memory_size()
|
| /linux-4.1.27/arch/arm/mach-s3c64xx/ |
| D | setup-keypad.c | 18 void samsung_keypad_cfg_gpio(unsigned int rows, unsigned int cols) in samsung_keypad_cfg_gpio() argument 24 s3c_gpio_cfgrange_nopull(S3C64XX_GPL(0), cols, S3C_GPIO_SFN(3)); in samsung_keypad_cfg_gpio()
|
| D | mach-smdk6410.c | 261 .cols = 8,
|
| D | mach-crag6410.c | 207 .cols = 6,
|
| /linux-4.1.27/drivers/s390/char/ |
| D | tty3270.c | 145 if (count > tp->view.cols * 2 - 11) in tty3270_update_prompt() 146 count = tp->view.cols * 2 - 11; in tty3270_update_prompt() 150 if (count < tp->view.cols * 2 - 11) { in tty3270_update_prompt() 153 off = tp->view.cols * tp->view.rows - 9; in tty3270_update_prompt() 172 sizeof(blueprint) + tp->view.cols * 2 - 9); in tty3270_create_prompt() 179 offset = tp->view.cols * (tp->view.rows - 2); in tty3270_create_prompt() 181 offset = tp->view.cols * tp->view.rows - 9; in tty3270_create_prompt() 185 tp->input = alloc_string(&tp->freemem, tp->view.cols * 2 - 9 + 6); in tty3270_create_prompt() 218 offset = tp->view.cols * tp->view.rows - 9; in tty3270_create_status() 232 tp->view.cols * nr); in tty3270_update_string() [all …]
|
| D | con3270.c | 113 cp->view.cols * (cp->view.rows - 1)); in con3270_create_status() 115 cp->view.cols * cp->view.rows - 8); in con3270_create_status() 127 if (s->len >= cp->view.cols - 5) in con3270_update_string() 130 cp->view.cols * (nr + 1)); in con3270_update_string() 254 cp->view.cols * cp->line_nr); in con3270_update() 456 size = (cp->cline->len < cp->view.cols - 5) ? in con3270_cline_end() 457 cp->cline->len + 4 : cp->view.cols; in con3270_cline_end() 460 if (s->len < cp->view.cols - 5) { in con3270_cline_end() 495 if (c == '\n' || cp->cline->len >= cp->view.cols) in con3270_write() 628 condev->cline = alloc_string(&condev->freemem, condev->view.cols); in con3270_init()
|
| D | raw3270.c | 39 short model, rows, cols; member 493 rp->cols = 80; in raw3270_size_device_vm() 498 rp->cols = 80; in raw3270_size_device_vm() 503 rp->cols = 80; in raw3270_size_device_vm() 508 rp->cols = 132; in raw3270_size_device_vm() 526 rp->cols = 80; in raw3270_size_device() 531 rp->cols = uap->uab.w; in raw3270_size_device() 539 rp->cols = uap->aua.wauai; in raw3270_size_device() 543 if (rp->rows == 24 && rp->cols == 80) in raw3270_size_device() 545 if (rp->rows == 32 && rp->cols == 80) in raw3270_size_device() [all …]
|
| D | fs3270.c | 358 iocb.col_cnt = fp->view.cols; in fs3270_ioctl() 473 ib = idal_buffer_alloc(2*fp->view.rows*fp->view.cols + 5, 0); in fs3270_open()
|
| D | raw3270.h | 162 unsigned int rows, cols; /* # of rows & colums of the view */ member
|
| /linux-4.1.27/arch/mn10300/boot/compressed/ |
| D | misc.c | 168 static int lines, cols; variable 177 memcpy(vidmem, vidmem + cols * 2, (lines - 1) * cols * 2); in scroll() 178 for (i = (lines - 1) * cols * 2; i < lines * cols * 2; i += 2) in scroll()
|
| /linux-4.1.27/tools/perf/util/ |
| D | help.c | 76 int cols = 1, rows; in pretty_print_string_list() local 86 cols = max_cols / space; in pretty_print_string_list() 87 rows = (cmds->cnt + cols - 1) / cols; in pretty_print_string_list() 92 for (j = 0; j < cols; j++) { in pretty_print_string_list() 98 if (j == cols-1 || n + rows >= cmds->cnt) in pretty_print_string_list()
|
| /linux-4.1.27/drivers/video/console/ |
| D | newport_con.c | 203 int i, cols; in newport_get_screensize() local 218 cols = 0; in newport_get_screensize() 226 cols += (treg >> 7) & 0xfe; in newport_get_screensize() 232 if (cols) { in newport_get_screensize() 233 if (cols > newport_xsize) in newport_get_screensize() 234 newport_xsize = cols; in newport_get_screensize() 330 int cols, rows; in newport_init() local 332 cols = newport_xsize / 8; in newport_init() 336 vc->vc_cols = cols; in newport_init() 339 vc_resize(vc, cols, rows); in newport_init()
|
| D | fbcon.c | 557 int cols, int rows, int new_cols, int new_rows) in fbcon_prepare_logo() argument 563 int cols, int rows, int new_cols, int new_rows) in fbcon_prepare_logo() argument 586 step = logo_lines * cols; in fbcon_prepare_logo() 587 for (r = q - logo_lines * cols; r < q; r++) in fbcon_prepare_logo() 593 int i = cols < new_cols ? cols : new_cols; in fbcon_prepare_logo() 603 r = q - step - cols; in fbcon_prepare_logo() 606 r -= cols; in fbcon_prepare_logo() 926 int rows, cols; in fbcon_startup() local 1003 cols = FBCON_SWAP(ops->rotate, info->var.xres, info->var.yres); in fbcon_startup() 1005 cols /= vc->vc_font.width; in fbcon_startup() [all …]
|
| /linux-4.1.27/arch/arm/plat-samsung/include/plat/ |
| D | keypad.h | 29 extern void samsung_keypad_cfg_gpio(unsigned int rows, unsigned int cols);
|
| /linux-4.1.27/arch/blackfin/mach-bf548/include/mach/ |
| D | bf54x_keys.h | 12 int cols; member
|
| /linux-4.1.27/include/uapi/linux/ |
| D | virtio_console.h | 48 __u16 cols; member
|
| /linux-4.1.27/include/linux/platform_data/ |
| D | keypad-omap.h | 20 int cols; member
|
| /linux-4.1.27/include/linux/i2c/ |
| D | adp5588.h | 144 int cols; /* Number of columns */ member
|
| D | twl.h | 624 unsigned cols; member
|
| /linux-4.1.27/Documentation/fb/ |
| D | gxfb.txt | 12 * It provides a nice large console (128 cols + 48 lines with 1024x768)
|
| D | lxfb.txt | 12 * It provides a nice large console (128 cols + 48 lines with 1024x768)
|
| D | aty128fb.txt | 11 * It provides a nice large console (128 cols + 48 lines with 1024x768)
|
| D | pvr2fb.txt | 11 * It provides a nice large console (128 cols + 48 lines with 1024x768)
|
| D | vesafb.txt | 18 * It provides a nice large console (128 cols + 48 lines with 1024x768)
|
| D | matroxfb.txt | 11 * It provides a nice large console (128 cols + 48 lines with 1024x768)
|
| /linux-4.1.27/tools/thermal/tmon/ |
| D | tui.c | 288 int rows, cols; in show_dialogue() local 294 getmaxyx(w, rows, cols); in show_dialogue() 297 (void)cols; in show_dialogue()
|
| /linux-4.1.27/drivers/input/touchscreen/ |
| D | elants_i2c.c | 402 u16 phy_x, phy_y, rows, cols, osr; in elants_i2c_query_ts_info() local 428 cols = resp[3] + resp[7] + resp[11]; in elants_i2c_query_ts_info() 468 if (rows == 0 || cols == 0 || osr == 0) { in elants_i2c_query_ts_info() 471 rows, cols, osr); in elants_i2c_query_ts_info() 476 ts->y_max = ELAN_TS_RESOLUTION(cols, osr); in elants_i2c_query_ts_info()
|
| /linux-4.1.27/drivers/char/ |
| D | virtio_console.c | 1349 static void set_console_size(struct port *port, u16 rows, u16 cols) in set_console_size() argument 1355 port->cons.ws.ws_col = cols; in set_console_size() 1664 __u16 cols; in handle_control_message() member 1672 set_console_size(port, size.rows, size.cols); in handle_control_message() 1853 u16 rows, cols; in config_work_handler() local 1856 virtio_cread(vdev, struct virtio_console_config, cols, &cols); in config_work_handler() 1860 set_console_size(port, rows, cols); in config_work_handler()
|
| /linux-4.1.27/arch/arm/mach-omap1/ |
| D | board-palmte.c | 83 .cols = 8,
|
| D | board-palmz71.c | 81 .cols = 8,
|
| D | board-palmtt.c | 146 .cols = 3,
|
| D | board-nokia770.c | 74 .cols = 8,
|
| D | board-perseus2.c | 205 .cols = 8,
|
| D | board-fsample.c | 247 .cols = 8,
|
| D | board-h2.c | 260 .cols = 8,
|
| D | board-sx1.c | 214 .cols = 6,
|
| D | board-innovator.c | 137 .cols = 8,
|
| D | board-h3.c | 297 .cols = 8,
|
| D | board-osk.c | 348 .cols = 8,
|
| D | board-htcherald.c | 239 .cols = 7,
|
| D | board-ams-delta.c | 341 .cols = 8,
|
| /linux-4.1.27/drivers/edac/ |
| D | sb_edac.c | 592 int cols = (COL_WIDTH_BITS(mtr) + 10); in numcol() local 594 if (cols > 12) { in numcol() 596 cols, (unsigned int)COL_WIDTH_BITS(mtr), mtr); in numcol() 600 return 1 << cols; in numcol() 853 unsigned i, j, banks, ranks, rows, cols, npages; in get_dimm_config() local 926 cols = numcol(mtr); in get_dimm_config() 928 size = ((u64)rows * cols * banks * ranks) >> (20 - 3); in get_dimm_config() 934 banks, ranks, rows, cols); in get_dimm_config()
|
| D | i7core_edac.c | 447 static const int cols[] = { in numcol() local 450 return cols[col & 0x3]; in numcol() 594 u32 banks, ranks, rows, cols; in get_dimm_config() local 605 cols = numcol(MC_DOD_NUMCOL(dimm_dod[j])); in get_dimm_config() 608 size = (rows * cols * banks * ranks) >> (20 - 3); in get_dimm_config() 613 banks, ranks, rows, cols); in get_dimm_config()
|
| /linux-4.1.27/arch/arm/boot/dts/ |
| D | exynos4412-smdk4412.dts | 43 keypad_cols: keypad-cols {
|
| D | exynos4210-smdkv310.dts | 74 keypad_cols: keypad-cols {
|
| D | exynos4412-origen.dts | 69 keypad_cols: keypad-cols {
|
| /linux-4.1.27/drivers/media/pci/saa7134/ |
| D | saa7134-video.c | 653 int cols = 0, rows = 0, i; in setup_clipping() local 659 col[cols].position = clip_range(clips[i].c.left); in setup_clipping() 660 col[cols].enable = (1 << i); in setup_clipping() 661 cols++; in setup_clipping() 662 col[cols].position = clip_range(clips[i].c.left+clips[i].c.width); in setup_clipping() 663 col[cols].disable = (1 << i); in setup_clipping() 664 cols++; in setup_clipping() 673 sort(col, cols, sizeof col[0], cliplist_cmp, NULL); in setup_clipping() 675 set_cliplist(dev,0x380,col,cols,"cols"); in setup_clipping()
|
| /linux-4.1.27/drivers/tty/vt/ |
| D | vt.c | 147 unsigned int cols, int do_clear); 840 unsigned int cols, unsigned int lines) in vc_do_resize() argument 857 if (cols > VC_RESIZE_MAXCOL || lines > VC_RESIZE_MAXROW) in vc_do_resize() 860 new_cols = (cols ? cols : vc->vc_cols); in vc_do_resize() 964 int vc_resize(struct vc_data *vc, unsigned int cols, unsigned int rows) in vc_resize() argument 966 return vc_do_resize(vc->port.tty, vc, cols, rows); in vc_resize() 2916 unsigned int cols, int do_clear) in vc_init() argument 2920 vc->vc_cols = cols; in vc_init() 2922 vc->vc_size_row = cols << 1; in vc_init() 3521 char cols[4]; in con_debug_enter() local [all …]
|
| /linux-4.1.27/include/linux/ |
| D | vt_kern.h | 38 int vc_resize(struct vc_data *vc, unsigned int cols, unsigned int lines);
|
| /linux-4.1.27/arch/arm/mach-omap2/ |
| D | board-ldp.c | 85 .cols = 6,
|
| D | board-omap3pandora.c | 230 .cols = 6,
|
| D | board-cm-t35.c | 392 .cols = 3,
|
| D | board-rx51-peripherals.c | 447 .cols = 8,
|
| /linux-4.1.27/drivers/net/ethernet/qlogic/netxen/ |
| D | netxen_nic_main.c | 3025 u8 dw, rows, cols, banks, ranks; in netxen_sysfs_read_dimm() local 3044 cols = NETXEN_DIMM_NUMCOLS(val); in netxen_sysfs_read_dimm() 3087 if (!cols) { in netxen_sysfs_read_dimm() 3088 netdev_err(netdev, "Invalid no of columns %x\n", cols); in netxen_sysfs_read_dimm() 3129 dimm.size = ((1 << rows) * (1 << cols) * dw * banks * ranks) / 8; in netxen_sysfs_read_dimm()
|
| /linux-4.1.27/arch/um/drivers/ |
| D | chan_kern.c | 58 unsigned short *cols) in not_configged_window_size() argument
|
| /linux-4.1.27/drivers/video/fbdev/sis/ |
| D | sis_main.h | 160 u16 cols; member
|
| /linux-4.1.27/Documentation/networking/ |
| D | batman-adv.txt | 11 cols won't be affected by any changes within the network. You can
|
| /linux-4.1.27/include/linux/mfd/ |
| D | cros_ec_commands.h | 1554 uint32_t cols; member
|
| /linux-4.1.27/arch/blackfin/mach-bf548/boards/ |
| D | cm_bf548.c | 94 .cols = 4,
|
| D | ezkit.c | 133 .cols = 4,
|
| /linux-4.1.27/arch/blackfin/mach-bf537/boards/ |
| D | stamp.c | 1872 .cols = 10,
|