search for: old_style

Displaying 4 results from an estimated 4 matches for "old_style".

2013 Sep 06
2
[PATCH supermin 0/2] helper: Implement device trees.
This two-part patch for supermin implements device trees (for ARM). The first patch introduces a more rational way to handle command line arguments in 'supermin-helper'. See the commit message for details. The old style is still supported for compatibility. The second patch adds an extra supermin-helper --dtb parameter specifying a wildcard. A device tree file which matches the
2006 Jan 06
3
Flashing Window in Quicken
...() = 0 { count=1, pinned=0, name=L"QC_button" } 000c: set_window_info( handle=0x10224, flags=00000001, style=50030041, ex_style=00000000, id=00000000, instance=(nil), is_unicode=0, user_data=(nil), extra_offset=-1, ext ra_size=0, extra_value=00000000 ) 000c: set_window_info() = 0 { old_style=50030040, old_ex_style=00000004, old_id=00000065, old_instance=0x7f460000, old_user_data=(nil), old_extra_value=00000000 } 000c: redraw_window( window=0x10224, flags=00000005, region={} ) 000c: redraw_window() = 0 000c: set_queue_mask( wake_mask=00000000, changed_mask=00000020, skip_wait=0...
2018 Aug 04
0
[PATCH] gpu: drm: nouveau: nvkm: nv40: Replace mdelay() with msleep() in nv40_sensor_setup()
...(style == NEW_STYLE) { nvkm_mask(device, 0x15b8, 0x80000000, 0); nvkm_wr32(device, 0x15b0, 0x80003fff); - mdelay(20); /* wait for the temperature to stabilize */ + msleep(20); /* wait for the temperature to stabilize */ return nvkm_rd32(device, 0x15b4) & 0x3fff; } else if (style == OLD_STYLE) { nvkm_wr32(device, 0x15b0, 0xff); - mdelay(20); /* wait for the temperature to stabilize */ + msleep(20); /* wait for the temperature to stabilize */ return nvkm_rd32(device, 0x15b4) & 0xff; } else return -ENODEV; -- 2.17.0
2014 Feb 25
2
[PATCH supermin v4] Supermin 5 rewrite.
...pu = host_cpu; - - /* Output files. */ - char *kernel = NULL, *dtb = NULL, *initrd = NULL, *appliance = NULL; - const char *output_dir = NULL; - - /* Device tree wildcard (--dtb argument). */ - const char *dtb_wildcard = NULL; - - uid_t euid = geteuid (); - gid_t egid = getegid (); - - bool old_style = true; - - /* Command line arguments. */ - for (;;) { - int option_index; - int c = getopt_long (argc, argv, options, long_options, &option_index); - if (c == -1) break; - - switch (c) { - case HELP_OPTION: - usage (stdout, argv[0]); - exit (EXIT_SUCCESS); - - cas...