accel              34 drivers/auxdisplay/cfag12864bfb.c 	.accel = FB_ACCEL_NONE,
accel              85 drivers/auxdisplay/ht16k33.c 	.accel		= FB_ACCEL_NONE,
accel            1670 drivers/gpu/drm/drm_fb_helper.c 	info->fix.accel = FB_ACCEL_NONE;
accel             224 drivers/gpu/drm/hisilicon/hibmc/hibmc_drm_fbdev.c 			 fix->accel, fix->capabilities);
accel             702 drivers/gpu/drm/vmwgfx/vmwgfx_fb.c 	info->fix.accel = FB_ACCEL_NONE;
accel              55 drivers/hid/hid-picolcd_fb.c 	.accel       = FB_ACCEL_NONE,
accel             269 drivers/hid/hid-wiimote-core.c void wiiproto_req_accel(struct wiimote_data *wdata, __u8 accel)
accel             271 drivers/hid/hid-wiimote-core.c 	accel = !!accel;
accel             272 drivers/hid/hid-wiimote-core.c 	if (accel == !!(wdata->state.flags & WIIPROTO_FLAG_ACCEL))
accel             275 drivers/hid/hid-wiimote-core.c 	if (accel)
accel            1853 drivers/hid/hid-wiimote-core.c 	input_free_device(wdata->accel);
accel             426 drivers/hid/hid-wiimote-modules.c 				  const __u8 *accel)
accel             445 drivers/hid/hid-wiimote-modules.c 	x = accel[2] << 2;
accel             446 drivers/hid/hid-wiimote-modules.c 	y = accel[3] << 2;
accel             447 drivers/hid/hid-wiimote-modules.c 	z = accel[4] << 2;
accel             449 drivers/hid/hid-wiimote-modules.c 	x |= (accel[0] >> 5) & 0x3;
accel             450 drivers/hid/hid-wiimote-modules.c 	y |= (accel[1] >> 4) & 0x2;
accel             451 drivers/hid/hid-wiimote-modules.c 	z |= (accel[1] >> 5) & 0x2;
accel             453 drivers/hid/hid-wiimote-modules.c 	input_report_abs(wdata->accel, ABS_RX, x - 0x200);
accel             454 drivers/hid/hid-wiimote-modules.c 	input_report_abs(wdata->accel, ABS_RY, y - 0x200);
accel             455 drivers/hid/hid-wiimote-modules.c 	input_report_abs(wdata->accel, ABS_RZ, z - 0x200);
accel             456 drivers/hid/hid-wiimote-modules.c 	input_sync(wdata->accel);
accel             486 drivers/hid/hid-wiimote-modules.c 	wdata->accel = input_allocate_device();
accel             487 drivers/hid/hid-wiimote-modules.c 	if (!wdata->accel)
accel             490 drivers/hid/hid-wiimote-modules.c 	input_set_drvdata(wdata->accel, wdata);
accel             491 drivers/hid/hid-wiimote-modules.c 	wdata->accel->open = wiimod_accel_open;
accel             492 drivers/hid/hid-wiimote-modules.c 	wdata->accel->close = wiimod_accel_close;
accel             493 drivers/hid/hid-wiimote-modules.c 	wdata->accel->dev.parent = &wdata->hdev->dev;
accel             494 drivers/hid/hid-wiimote-modules.c 	wdata->accel->id.bustype = wdata->hdev->bus;
accel             495 drivers/hid/hid-wiimote-modules.c 	wdata->accel->id.vendor = wdata->hdev->vendor;
accel             496 drivers/hid/hid-wiimote-modules.c 	wdata->accel->id.product = wdata->hdev->product;
accel             497 drivers/hid/hid-wiimote-modules.c 	wdata->accel->id.version = wdata->hdev->version;
accel             498 drivers/hid/hid-wiimote-modules.c 	wdata->accel->name = WIIMOTE_NAME " Accelerometer";
accel             500 drivers/hid/hid-wiimote-modules.c 	set_bit(EV_ABS, wdata->accel->evbit);
accel             501 drivers/hid/hid-wiimote-modules.c 	set_bit(ABS_RX, wdata->accel->absbit);
accel             502 drivers/hid/hid-wiimote-modules.c 	set_bit(ABS_RY, wdata->accel->absbit);
accel             503 drivers/hid/hid-wiimote-modules.c 	set_bit(ABS_RZ, wdata->accel->absbit);
accel             504 drivers/hid/hid-wiimote-modules.c 	input_set_abs_params(wdata->accel, ABS_RX, -500, 500, 2, 4);
accel             505 drivers/hid/hid-wiimote-modules.c 	input_set_abs_params(wdata->accel, ABS_RY, -500, 500, 2, 4);
accel             506 drivers/hid/hid-wiimote-modules.c 	input_set_abs_params(wdata->accel, ABS_RZ, -500, 500, 2, 4);
accel             508 drivers/hid/hid-wiimote-modules.c 	ret = input_register_device(wdata->accel);
accel             517 drivers/hid/hid-wiimote-modules.c 	input_free_device(wdata->accel);
accel             518 drivers/hid/hid-wiimote-modules.c 	wdata->accel = NULL;
accel             525 drivers/hid/hid-wiimote-modules.c 	if (!wdata->accel)
accel             528 drivers/hid/hid-wiimote-modules.c 	input_unregister_device(wdata->accel);
accel             529 drivers/hid/hid-wiimote-modules.c 	wdata->accel = NULL;
accel             148 drivers/hid/hid-wiimote.h 	struct input_dev *accel;
accel             196 drivers/hid/hid-wiimote.h 	void (*in_accel) (struct wiimote_data *wdata, const __u8 *accel);
accel             267 drivers/hid/hid-wiimote.h extern void wiiproto_req_accel(struct wiimote_data *wdata, __u8 accel);
accel              90 drivers/iio/accel/adxl345_core.c 	__le16 accel;
accel             104 drivers/iio/accel/adxl345_core.c 				       &accel, sizeof(accel));
accel             108 drivers/iio/accel/adxl345_core.c 		*val = sign_extend32(le16_to_cpu(accel), 12);
accel              56 drivers/iio/accel/dmard09.c 	s16 accel;
accel              73 drivers/iio/accel/dmard09.c 		accel = get_unaligned_le16(&buf[chan->address]);
accel              76 drivers/iio/accel/dmard09.c 		accel <<= 4;
accel              77 drivers/iio/accel/dmard09.c 		accel >>= 7;
accel              79 drivers/iio/accel/dmard09.c 		*val = accel;
accel              31 drivers/iio/accel/hid-sensor-accel-3d.c 	struct hid_sensor_hub_attribute_info accel[ACCEL_3D_CHANNEL_MAX];
accel             148 drivers/iio/accel/hid-sensor-accel-3d.c 		report_id = accel_state->accel[chan->scan_index].report_id;
accel             149 drivers/iio/accel/hid-sensor-accel-3d.c 		min = accel_state->accel[chan->scan_index].logical_minimum;
accel             302 drivers/iio/accel/hid-sensor-accel-3d.c 				&st->accel[CHANNEL_SCAN_INDEX_X + i]);
accel             307 drivers/iio/accel/hid-sensor-accel-3d.c 				st->accel[CHANNEL_SCAN_INDEX_X + i].size);
accel             310 drivers/iio/accel/hid-sensor-accel-3d.c 			st->accel[0].index,
accel             311 drivers/iio/accel/hid-sensor-accel-3d.c 			st->accel[0].report_id,
accel             312 drivers/iio/accel/hid-sensor-accel-3d.c 			st->accel[1].index, st->accel[1].report_id,
accel             313 drivers/iio/accel/hid-sensor-accel-3d.c 			st->accel[2].index, st->accel[2].report_id);
accel             317 drivers/iio/accel/hid-sensor-accel-3d.c 				&st->accel[CHANNEL_SCAN_INDEX_X],
accel             629 drivers/media/pci/ivtv/ivtvfb.c 	fix->accel = FB_ACCEL_NONE;
accel             122 drivers/media/platform/vivid/vivid-osd.c 	fix->accel = FB_ACCEL_NONE;
accel             437 drivers/media/rc/ati_remote.c static const struct accel_times accel[] = {
accel             467 drivers/media/rc/ati_remote.c 	for (i = 0; i < ARRAY_SIZE(accel) - 1; i++) {
accel             468 drivers/media/rc/ati_remote.c 		unsigned long timeout = msecs_to_jiffies(accel[i].msecs);
accel             471 drivers/media/rc/ati_remote.c 			return accel[i].value;
accel             473 drivers/media/rc/ati_remote.c 	return accel[i].value;
accel            5343 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 			     struct ixgbe_fwd_adapter *accel)
accel            5347 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 	struct net_device *vdev = accel->netdev;
accel            5350 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 	baseq = accel->pool * adapter->num_rx_queues_per_pool;
accel            5352 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 		   accel->pool, adapter->num_rx_pools,
accel            5355 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 	accel->rx_base_queue = baseq;
accel            5356 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 	accel->tx_base_queue = baseq;
accel            5375 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 				   VMDQ_P(accel->pool));
accel            5391 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 	clear_bit(accel->pool, adapter->fwd_bitmask);
accel            5392 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 	kfree(accel);
accel            5400 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 	struct ixgbe_fwd_adapter *accel;
accel            5405 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 	accel = macvlan_accel_priv(vdev);
accel            5406 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 	if (!accel)
accel            5409 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 	ixgbe_fwd_ring_up(adapter, accel);
accel            9043 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 	struct ixgbe_fwd_adapter *accel;
accel            9051 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 	accel = macvlan_accel_priv(vdev);
accel            9052 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 	if (!accel)
accel            9059 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 		accel->pool = pool;
accel            9071 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 	kfree(accel);
accel            10067 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 	struct ixgbe_fwd_adapter *accel;
accel            10141 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 	accel = kzalloc(sizeof(*accel), GFP_KERNEL);
accel            10142 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 	if (!accel)
accel            10147 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 	accel->pool = pool;
accel            10148 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 	accel->netdev = vdev;
accel            10151 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 		return accel;
accel            10153 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 	err = ixgbe_fwd_ring_up(adapter, accel);
accel            10157 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 	return accel;
accel            10162 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 	struct ixgbe_fwd_adapter *accel = priv;
accel            10164 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 	unsigned int rxbase = accel->rx_base_queue;
accel            10168 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 	ixgbe_del_mac_filter(adapter, accel->netdev->dev_addr,
accel            10169 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 			     VMDQ_P(accel->pool));
accel            10189 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 	netdev_unbind_sb_channel(pdev, accel->netdev);
accel            10190 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 	netdev_set_sb_channel(accel->netdev, 0);
accel            10192 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 	clear_bit(accel->pool, adapter->fwd_bitmask);
accel            10193 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c 	kfree(accel);
accel             207 drivers/platform/x86/classmate-laptop.c 	struct cmpc_accel *accel;
accel             211 drivers/platform/x86/classmate-laptop.c 	accel = dev_get_drvdata(&inputdev->dev);
accel             213 drivers/platform/x86/classmate-laptop.c 	return sprintf(buf, "%d\n", accel->sensitivity);
accel             222 drivers/platform/x86/classmate-laptop.c 	struct cmpc_accel *accel;
accel             228 drivers/platform/x86/classmate-laptop.c 	accel = dev_get_drvdata(&inputdev->dev);
accel             238 drivers/platform/x86/classmate-laptop.c 	accel->sensitivity = sensitivity;
accel             256 drivers/platform/x86/classmate-laptop.c 	struct cmpc_accel *accel;
accel             260 drivers/platform/x86/classmate-laptop.c 	accel = dev_get_drvdata(&inputdev->dev);
accel             262 drivers/platform/x86/classmate-laptop.c 	return sprintf(buf, "%d\n", accel->g_select);
accel             271 drivers/platform/x86/classmate-laptop.c 	struct cmpc_accel *accel;
accel             277 drivers/platform/x86/classmate-laptop.c 	accel = dev_get_drvdata(&inputdev->dev);
accel             287 drivers/platform/x86/classmate-laptop.c 	accel->g_select = g_select;
accel             302 drivers/platform/x86/classmate-laptop.c 	struct cmpc_accel *accel;
accel             305 drivers/platform/x86/classmate-laptop.c 	accel = dev_get_drvdata(&input->dev);
accel             307 drivers/platform/x86/classmate-laptop.c 	cmpc_accel_set_sensitivity_v4(acpi->handle, accel->sensitivity);
accel             308 drivers/platform/x86/classmate-laptop.c 	cmpc_accel_set_g_select_v4(acpi->handle, accel->g_select);
accel             311 drivers/platform/x86/classmate-laptop.c 		accel->inputdev_state = CMPC_ACCEL_DEV_STATE_OPEN;
accel             320 drivers/platform/x86/classmate-laptop.c 	struct cmpc_accel *accel;
accel             323 drivers/platform/x86/classmate-laptop.c 	accel = dev_get_drvdata(&input->dev);
accel             326 drivers/platform/x86/classmate-laptop.c 	accel->inputdev_state = CMPC_ACCEL_DEV_STATE_CLOSED;
accel             343 drivers/platform/x86/classmate-laptop.c 	struct cmpc_accel *accel;
accel             346 drivers/platform/x86/classmate-laptop.c 	accel = dev_get_drvdata(&inputdev->dev);
accel             348 drivers/platform/x86/classmate-laptop.c 	if (accel->inputdev_state == CMPC_ACCEL_DEV_STATE_OPEN)
accel             357 drivers/platform/x86/classmate-laptop.c 	struct cmpc_accel *accel;
accel             360 drivers/platform/x86/classmate-laptop.c 	accel = dev_get_drvdata(&inputdev->dev);
accel             362 drivers/platform/x86/classmate-laptop.c 	if (accel->inputdev_state == CMPC_ACCEL_DEV_STATE_OPEN) {
accel             364 drivers/platform/x86/classmate-laptop.c 					      accel->sensitivity);
accel             366 drivers/platform/x86/classmate-laptop.c 					   accel->g_select);
accel             380 drivers/platform/x86/classmate-laptop.c 	struct cmpc_accel *accel;
accel             382 drivers/platform/x86/classmate-laptop.c 	accel = kmalloc(sizeof(*accel), GFP_KERNEL);
accel             383 drivers/platform/x86/classmate-laptop.c 	if (!accel)
accel             386 drivers/platform/x86/classmate-laptop.c 	accel->inputdev_state = CMPC_ACCEL_DEV_STATE_CLOSED;
accel             388 drivers/platform/x86/classmate-laptop.c 	accel->sensitivity = CMPC_ACCEL_SENSITIVITY_DEFAULT;
accel             389 drivers/platform/x86/classmate-laptop.c 	cmpc_accel_set_sensitivity_v4(acpi->handle, accel->sensitivity);
accel             395 drivers/platform/x86/classmate-laptop.c 	accel->g_select = CMPC_ACCEL_G_SELECT_DEFAULT;
accel             396 drivers/platform/x86/classmate-laptop.c 	cmpc_accel_set_g_select_v4(acpi->handle, accel->g_select);
accel             408 drivers/platform/x86/classmate-laptop.c 	dev_set_drvdata(&inputdev->dev, accel);
accel             417 drivers/platform/x86/classmate-laptop.c 	kfree(accel);
accel             550 drivers/platform/x86/classmate-laptop.c 	struct cmpc_accel *accel;
accel             554 drivers/platform/x86/classmate-laptop.c 	accel = dev_get_drvdata(&inputdev->dev);
accel             556 drivers/platform/x86/classmate-laptop.c 	return sprintf(buf, "%d\n", accel->sensitivity);
accel             565 drivers/platform/x86/classmate-laptop.c 	struct cmpc_accel *accel;
accel             571 drivers/platform/x86/classmate-laptop.c 	accel = dev_get_drvdata(&inputdev->dev);
accel             577 drivers/platform/x86/classmate-laptop.c 	accel->sensitivity = sensitivity;
accel             621 drivers/platform/x86/classmate-laptop.c 	struct cmpc_accel *accel;
accel             623 drivers/platform/x86/classmate-laptop.c 	accel = kmalloc(sizeof(*accel), GFP_KERNEL);
accel             624 drivers/platform/x86/classmate-laptop.c 	if (!accel)
accel             627 drivers/platform/x86/classmate-laptop.c 	accel->sensitivity = CMPC_ACCEL_SENSITIVITY_DEFAULT;
accel             628 drivers/platform/x86/classmate-laptop.c 	cmpc_accel_set_sensitivity(acpi->handle, accel->sensitivity);
accel             640 drivers/platform/x86/classmate-laptop.c 	dev_set_drvdata(&inputdev->dev, accel);
accel             647 drivers/platform/x86/classmate-laptop.c 	kfree(accel);
accel             676 drivers/staging/fbtft/fbtft-core.c 	info->fix.accel =          FB_ACCEL_NONE;
accel             194 drivers/staging/sm750fb/sm750.c 	sm750_dev->accel.de_fillrect(&sm750_dev->accel,
accel             228 drivers/staging/sm750fb/sm750.c 	sm750_dev->accel.de_copyarea(&sm750_dev->accel,
accel             277 drivers/staging/sm750fb/sm750.c 	sm750_dev->accel.de_imageblit(&sm750_dev->accel,
accel             673 drivers/staging/sm750fb/sm750.c 	sm750_dev->accel.de_wait = (sm750_dev->revid == SM750LE_REVISION_ID) ?
accel             875 drivers/staging/sm750fb/sm750.c 	fix->accel = FB_ACCEL_SMI;
accel            1113 drivers/staging/sm750fb/sm750.c 		sm750_dev->accel.de_init = sm750_hw_de_init;
accel            1114 drivers/staging/sm750fb/sm750.c 		sm750_dev->accel.de_fillrect = sm750_hw_fillrect;
accel            1115 drivers/staging/sm750fb/sm750.c 		sm750_dev->accel.de_copyarea = sm750_hw_copyarea;
accel            1116 drivers/staging/sm750fb/sm750.c 		sm750_dev->accel.de_imageblit = sm750_hw_imageblit;
accel              81 drivers/staging/sm750fb/sm750.h 	struct lynx_accel accel;
accel              21 drivers/staging/sm750fb/sm750_accel.c static inline void write_dpr(struct lynx_accel *accel, int offset, u32 regValue)
accel              23 drivers/staging/sm750fb/sm750_accel.c 	writel(regValue, accel->dprBase + offset);
accel              26 drivers/staging/sm750fb/sm750_accel.c static inline u32 read_dpr(struct lynx_accel *accel, int offset)
accel              28 drivers/staging/sm750fb/sm750_accel.c 	return readl(accel->dprBase + offset);
accel              31 drivers/staging/sm750fb/sm750_accel.c static inline void write_dpPort(struct lynx_accel *accel, u32 data)
accel              33 drivers/staging/sm750fb/sm750_accel.c 	writel(data, accel->dpPortBase);
accel              36 drivers/staging/sm750fb/sm750_accel.c void sm750_hw_de_init(struct lynx_accel *accel)
accel              41 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_MASKS, 0xFFFFFFFF);
accel              53 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_STRETCH_FORMAT,
accel              54 drivers/staging/sm750fb/sm750_accel.c 		  (read_dpr(accel, DE_STRETCH_FORMAT) & ~clr) | reg);
accel              57 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_CLIP_TL, 0); /* dpr2c */
accel              58 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_CLIP_BR, 0); /* dpr30 */
accel              60 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_COLOR_COMPARE_MASK, 0); /* dpr24 */
accel              61 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_COLOR_COMPARE, 0);
accel              67 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_CONTROL, read_dpr(accel, DE_CONTROL) & ~clr);
accel              76 drivers/staging/sm750fb/sm750_accel.c void sm750_hw_set2dformat(struct lynx_accel *accel, int fmt)
accel              81 drivers/staging/sm750fb/sm750_accel.c 	reg = read_dpr(accel, DE_STRETCH_FORMAT);
accel              85 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_STRETCH_FORMAT, reg);
accel              88 drivers/staging/sm750fb/sm750_accel.c int sm750_hw_fillrect(struct lynx_accel *accel,
accel              95 drivers/staging/sm750fb/sm750_accel.c 	if (accel->de_wait() != 0) {
accel             104 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_WINDOW_DESTINATION_BASE, base); /* dpr40 */
accel             105 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_PITCH,
accel             110 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_WINDOW_WIDTH,
accel             115 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_FOREGROUND, color); /* DPR14 */
accel             117 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_DESTINATION,
accel             121 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_DIMENSION,
accel             129 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_CONTROL, deCtrl);
accel             134 drivers/staging/sm750fb/sm750_accel.c struct lynx_accel *accel,
accel             229 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_WINDOW_SOURCE_BASE, sBase); /* dpr40 */
accel             236 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_WINDOW_DESTINATION_BASE, dBase); /* dpr44 */
accel             243 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_PITCH,
accel             253 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_WINDOW_WIDTH,
accel             258 drivers/staging/sm750fb/sm750_accel.c 	if (accel->de_wait() != 0)
accel             261 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_SOURCE,
accel             264 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_DESTINATION,
accel             267 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_DIMENSION,
accel             274 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_CONTROL, de_ctrl); /* dpr0c */
accel             279 drivers/staging/sm750fb/sm750_accel.c static unsigned int deGetTransparency(struct lynx_accel *accel)
accel             283 drivers/staging/sm750fb/sm750_accel.c 	de_ctrl = read_dpr(accel, DE_CONTROL);
accel             291 drivers/staging/sm750fb/sm750_accel.c int sm750_hw_imageblit(struct lynx_accel *accel,
accel             318 drivers/staging/sm750fb/sm750_accel.c 	if (accel->de_wait() != 0)
accel             325 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_WINDOW_SOURCE_BASE, 0);
accel             331 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_WINDOW_DESTINATION_BASE, dBase);
accel             338 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_PITCH,
accel             348 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_WINDOW_WIDTH,
accel             358 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_SOURCE,
accel             362 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_DESTINATION,
accel             366 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_DIMENSION,
accel             370 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_FOREGROUND, fColor);
accel             371 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_BACKGROUND, bColor);
accel             377 drivers/staging/sm750fb/sm750_accel.c 	write_dpr(accel, DE_CONTROL, de_ctrl | deGetTransparency(accel));
accel             383 drivers/staging/sm750fb/sm750_accel.c 			write_dpPort(accel, *(unsigned int *)(pSrcbuf + (j * 4)));
accel             388 drivers/staging/sm750fb/sm750_accel.c 			write_dpPort(accel, *(unsigned int *)ajRemain);
accel             188 drivers/staging/sm750fb/sm750_accel.h void sm750_hw_set2dformat(struct lynx_accel *accel, int fmt);
accel             190 drivers/staging/sm750fb/sm750_accel.h void sm750_hw_de_init(struct lynx_accel *accel);
accel             192 drivers/staging/sm750fb/sm750_accel.h int sm750_hw_fillrect(struct lynx_accel *accel,
accel             198 drivers/staging/sm750fb/sm750_accel.h struct lynx_accel *accel,
accel             212 drivers/staging/sm750fb/sm750_accel.h int sm750_hw_imageblit(struct lynx_accel *accel,
accel              63 drivers/staging/sm750fb/sm750_hw.c 	sm750_dev->accel.dprBase = sm750_dev->pvReg + DE_BASE_ADDR_TYPE1;
accel              64 drivers/staging/sm750fb/sm750_hw.c 	sm750_dev->accel.dpPortBase = sm750_dev->pvReg + DE_PORT_ADDR_TYPE1;
accel             279 drivers/staging/sm750fb/sm750_hw.c 		sm750_hw_set2dformat(&sm750_dev->accel, fmt);
accel             506 drivers/staging/sm750fb/sm750_hw.c 	sm750_dev->accel.de_init(&sm750_dev->accel);
accel              81 drivers/video/fbdev/68328fb.c 	.accel =	FB_ACCEL_NONE,
accel             708 drivers/video/fbdev/acornfb.c 	fb_info.fix.accel	= FB_ACCEL_NONE;
accel             486 drivers/video/fbdev/amba-clcd.c 	fb->fb.fix.accel	= FB_ACCEL_NONE;
accel            3562 drivers/video/fbdev/amifb.c 	info->fix.accel = FB_ACCEL_AMIGABLITT;
accel              89 drivers/video/fbdev/arcfb.c 	.accel =	FB_ACCEL_NONE,
accel            1017 drivers/video/fbdev/arkfb.c 	info->fix.accel = FB_ACCEL_NONE;
accel             481 drivers/video/fbdev/asiliantfb.c 	.accel =	FB_ACCEL_NONE,
accel             168 drivers/video/fbdev/atafb.c 		.accel	= FB_ACCEL_NONE,
accel             588 drivers/video/fbdev/atafb.c 	fix->accel = FB_ACCEL_ATARIBLITT;
accel             889 drivers/video/fbdev/atafb.c 	fix->accel = FB_ACCEL_ATARIBLITT;
accel            1814 drivers/video/fbdev/atafb.c 	fix->accel = FB_ACCEL_ATARIBLITT;
accel             249 drivers/video/fbdev/atmel_lcdfb.c 	.accel		= FB_ACCEL_NONE,
accel             386 drivers/video/fbdev/aty/aty128fb.c 	.accel		= FB_ACCEL_ATI_RAGE128,
accel             302 drivers/video/fbdev/aty/atyfb.h 		const union aty_pll * pll, u32 bpp, u32 accel);
accel            2536 drivers/video/fbdev/aty/atyfb_base.c 		info->fix.accel = FB_ACCEL_ATI_MACH64GX;
accel            2539 drivers/video/fbdev/aty/atyfb_base.c 		info->fix.accel = FB_ACCEL_ATI_MACH64CT;
accel            2543 drivers/video/fbdev/aty/atyfb_base.c 		info->fix.accel = FB_ACCEL_ATI_MACH64VT;
accel            2547 drivers/video/fbdev/aty/atyfb_base.c 		info->fix.accel = FB_ACCEL_ATI_MACH64GT;
accel              81 drivers/video/fbdev/aty/mach64_gx.c 			   const union aty_pll *pll, u32 bpp, u32 accel)
accel             207 drivers/video/fbdev/aty/mach64_gx.c 				  u32 accel)
accel             239 drivers/video/fbdev/aty/mach64_gx.c 	if (!accel) {
accel             290 drivers/video/fbdev/aty/mach64_gx.c 				 u32 accel)
accel             886 drivers/video/fbdev/aty/mach64_gx.c 				   u32 accel)
accel            2010 drivers/video/fbdev/aty/radeon_base.c 	info->fix.accel = FB_ACCEL_ATI_RADEON;
accel              92 drivers/video/fbdev/au1100fb.c 	.accel		= FB_ACCEL_NONE,
accel            1566 drivers/video/fbdev/au1200fb.c 	fbi->fix.accel = FB_ACCEL_NONE;
accel             102 drivers/video/fbdev/broadsheetfb.c 	.accel =	FB_ACCEL_NONE,
accel             192 drivers/video/fbdev/bw2.c 	info->fix.accel = FB_ACCEL_SUN_BWTWO;
accel              86 drivers/video/fbdev/carminefb.c 	.accel = FB_ACCEL_NONE,
accel             366 drivers/video/fbdev/cg14.c 	info->fix.accel = FB_ACCEL_SUN_CG14;
accel             257 drivers/video/fbdev/cg3.c 	info->fix.accel = FB_ACCEL_SUN_CGTHREE;
accel             649 drivers/video/fbdev/cg6.c 	info->fix.accel = FB_ACCEL_SUN_CGSIX;
accel             298 drivers/video/fbdev/chipsfb.c 	.accel =	FB_ACCEL_NONE,
accel            1988 drivers/video/fbdev/cirrusfb.c 		info->fix.accel = FB_ACCEL_NONE;
accel            1990 drivers/video/fbdev/cirrusfb.c 		info->fix.accel = FB_ACCEL_CIRRUS_ALPINE;
accel             329 drivers/video/fbdev/clps711x-fb.c 	info->fix.accel = FB_ACCEL_NONE;
accel             122 drivers/video/fbdev/cobalt_lcdfb.c 	.accel		= FB_ACCEL_NONE,
accel            1045 drivers/video/fbdev/controlfb.c         info->fix.accel = FB_ACCEL_NONE;
accel            1197 drivers/video/fbdev/core/fbmem.c 	u32			accel;
accel            1269 drivers/video/fbdev/core/fbmem.c 	err |= put_user(fix->accel, &fix32->accel);
accel            1438 drivers/video/fbdev/cyber2000fb.c 		cfb->fb.fix.accel = 0;
accel            1442 drivers/video/fbdev/cyber2000fb.c 		cfb->fb.fix.accel = FB_ACCEL_IGS_CYBER2000;
accel            1446 drivers/video/fbdev/cyber2000fb.c 		cfb->fb.fix.accel = FB_ACCEL_IGS_CYBER2010;
accel            1450 drivers/video/fbdev/cyber2000fb.c 		cfb->fb.fix.accel = FB_ACCEL_IGS_CYBER5000;
accel             184 drivers/video/fbdev/da8xx-fb.c 	.accel = FB_ACCEL_NONE
accel              63 drivers/video/fbdev/efifb.c 	.accel			= FB_ACCEL_NONE,
accel             516 drivers/video/fbdev/ep93xx-fb.c 	info->fix.accel		= FB_ACCEL_NONE;
accel              98 drivers/video/fbdev/fb-puv3.c 	.accel =	FB_ACCEL_NONE,
accel             702 drivers/video/fbdev/fb-puv3.c 	info->fix.accel = FB_ACCEL_PUV3_UNIGFX;
accel             894 drivers/video/fbdev/ffb.c 	info->fix.accel = FB_ACCEL_SUN_CREATOR;
accel             136 drivers/video/fbdev/fm2fb.c 	.accel =	FB_ACCEL_NONE,
accel             793 drivers/video/fbdev/fsl-diu-fb.c 	fix->accel = FB_ACCEL_NONE;
accel              80 drivers/video/fbdev/g364fb.c 	.accel 		= FB_ACCEL_NONE,
accel             827 drivers/video/fbdev/gbefb.c 	fix->accel = FB_ACCEL_NONE;
accel             286 drivers/video/fbdev/geode/gx1fb_core.c 	info->fix.accel		= FB_ACCEL_NONE;
accel             300 drivers/video/fbdev/geode/gxfb_core.c 	info->fix.accel		= FB_ACCEL_NONE;
accel             421 drivers/video/fbdev/geode/lxfb_core.c 	info->fix.accel		= FB_ACCEL_NONE;
accel             220 drivers/video/fbdev/goldfishfb.c 	fb->fb.fix.accel	= FB_ACCEL_NONE;
accel              75 drivers/video/fbdev/grvga.c 	.accel =	FB_ACCEL_NONE,
accel              58 drivers/video/fbdev/hecubafb.c 	.accel =	FB_ACCEL_NONE,
accel             130 drivers/video/fbdev/hgafb.c 	.accel 		= FB_ACCEL_NONE
accel              43 drivers/video/fbdev/hitfb.c 	.accel		= FB_ACCEL_NONE,
accel              27 drivers/video/fbdev/hpfb.c 		.accel		= FB_ACCEL_NONE,
accel             821 drivers/video/fbdev/hyperv_fb.c 	info->fix.accel = FB_ACCEL_NONE;
accel              92 drivers/video/fbdev/i740fb.c 	.accel =	FB_ACCEL_NONE,
accel             140 drivers/video/fbdev/i810/i810_main.c static bool accel;
accel            1122 drivers/video/fbdev/i810/i810_main.c 	fix->accel = FB_ACCEL_I810;
accel            1773 drivers/video/fbdev/i810/i810_main.c 	if (accel) 
accel            1971 drivers/video/fbdev/i810/i810_main.c 			accel = 1;
accel            2191 drivers/video/fbdev/i810/i810_main.c module_param(accel, bool, 0);
accel            2192 drivers/video/fbdev/i810/i810_main.c MODULE_PARM_DESC(accel, "Use Acceleration (BLIT) engine (default = 0)");
accel            1427 drivers/video/fbdev/imsttfb.c 	info->fix.accel = FB_ACCEL_IMS_TWINTURBO;
accel             680 drivers/video/fbdev/imxfb.c 	info->fix.accel			= FB_ACCEL_NONE;
accel             109 drivers/video/fbdev/intelfb/intelfb.h 	((d)->accel && !(d)->ring_lockup &&                             \
accel             330 drivers/video/fbdev/intelfb/intelfb.h 	int accel;
accel             229 drivers/video/fbdev/intelfb/intelfbdrv.c static bool accel       = 1;
accel             242 drivers/video/fbdev/intelfb/intelfbdrv.c module_param(accel, bool, S_IRUGO);
accel             243 drivers/video/fbdev/intelfb/intelfbdrv.c MODULE_PARM_DESC(accel, "Enable hardware acceleration");
accel             353 drivers/video/fbdev/intelfb/intelfbdrv.c 		if (get_opt_bool(this_opt, "accel", &accel))
accel             586 drivers/video/fbdev/intelfb/intelfbdrv.c 	dinfo->accel    = accel;
accel             589 drivers/video/fbdev/intelfb/intelfbdrv.c 	if (NOACCEL_CHIPSET(dinfo) && dinfo->accel == 1) {
accel             592 drivers/video/fbdev/intelfb/intelfbdrv.c 		dinfo->accel = 0;
accel             605 drivers/video/fbdev/intelfb/intelfbdrv.c 	if (dinfo->accel) {
accel             633 drivers/video/fbdev/intelfb/intelfbdrv.c 	if (dinfo->accel)
accel             666 drivers/video/fbdev/intelfb/intelfbdrv.c 	if (dinfo->accel) {
accel             761 drivers/video/fbdev/intelfb/intelfbdrv.c 		"noinit = %d\n", vram, accel, hwcursor, fixed, noinit);
accel             860 drivers/video/fbdev/intelfb/intelfbdrv.c 	if (dinfo->accel)
accel            1079 drivers/video/fbdev/intelfb/intelfbdrv.c 	if (dinfo->accel)
accel            1116 drivers/video/fbdev/intelfb/intelfbdrv.c 	info->fix.accel = FB_ACCEL_I830;
accel            1560 drivers/video/fbdev/intelfb/intelfbhw.c 	if (!dinfo->accel)
accel            1618 drivers/video/fbdev/intelfb/intelfbhw.c 		dinfo->accel, dinfo->ring_active);
accel            1621 drivers/video/fbdev/intelfb/intelfbhw.c 	if (!dinfo->accel)
accel            1637 drivers/video/fbdev/intelfb/intelfbhw.c 		dinfo->accel, dinfo->ring_active);
accel            1640 drivers/video/fbdev/intelfb/intelfbhw.c 	if (!dinfo->accel)
accel              44 drivers/video/fbdev/kyro/fbdev.c 	.accel		= FB_ACCEL_NONE,
accel             445 drivers/video/fbdev/leo.c 	info->fix.accel = FB_ACCEL_SUN_LEO;
accel             130 drivers/video/fbdev/macfb.c 	.accel	= FB_ACCEL_NONE,
accel             341 drivers/video/fbdev/matrox/matroxfb_Ti3026.c 			if (minfo->accel.ramdac_rev > 0x20) {
accel             718 drivers/video/fbdev/matrox/matroxfb_Ti3026.c 	minfo->accel.ramdac_rev = inTi3026(minfo, TVP3026_XSILICONREV);
accel             116 drivers/video/fbdev/matrox/matroxfb_accel.c 	int accel;
accel             127 drivers/video/fbdev/matrox/matroxfb_accel.c 	accel = (minfo->fbcon.var.accel_flags & FB_ACCELF_TEXT) == FB_ACCELF_TEXT;
accel             134 drivers/video/fbdev/matrox/matroxfb_accel.c 				if (accel && !(mpitch & 1)) {
accel             142 drivers/video/fbdev/matrox/matroxfb_accel.c 				if (accel) {
accel             153 drivers/video/fbdev/matrox/matroxfb_accel.c 				if (accel) {
accel             161 drivers/video/fbdev/matrox/matroxfb_accel.c 				if (accel) {
accel             169 drivers/video/fbdev/matrox/matroxfb_accel.c 				if (accel) {
accel             193 drivers/video/fbdev/matrox/matroxfb_accel.c 	minfo->accel.m_dwg_rect = M_DWG_TRAP | M_DWG_SOLID | M_DWG_ARZERO | M_DWG_SGNZERO | M_DWG_SHIFTZERO;
accel             194 drivers/video/fbdev/matrox/matroxfb_accel.c 	if (isMilleniumII(minfo)) minfo->accel.m_dwg_rect |= M_DWG_TRANSC;
accel             195 drivers/video/fbdev/matrox/matroxfb_accel.c 	minfo->accel.m_opmode = mopmode;
accel             196 drivers/video/fbdev/matrox/matroxfb_accel.c 	minfo->accel.m_access = maccess;
accel             197 drivers/video/fbdev/matrox/matroxfb_accel.c 	minfo->accel.m_pitch = mpitch;
accel             204 drivers/video/fbdev/matrox/matroxfb_accel.c 	mga_outl(M_MACCESS, minfo->accel.m_access);
accel             205 drivers/video/fbdev/matrox/matroxfb_accel.c 	mga_outl(M_PITCH, minfo->accel.m_pitch);
accel             318 drivers/video/fbdev/matrox/matroxfb_accel.c 	mga_outl(M_DWGCTL, minfo->accel.m_dwg_rect | M_DWG_REPLACE);
accel             362 drivers/video/fbdev/matrox/matroxfb_accel.c 		mga_outl(M_DWGCTL, minfo->accel.m_dwg_rect | M_DWG_REPLACE2);
accel             717 drivers/video/fbdev/matrox/matroxfb_base.c 	fix->accel = minfo->devflags.accelerator;
accel            2094 drivers/video/fbdev/matrox/matroxfb_base.c 	spin_lock_init(&minfo->lock.accel);
accel             353 drivers/video/fbdev/matrox/matroxfb_base.h 	struct matrox_accel_data accel;
accel             416 drivers/video/fbdev/matrox/matroxfb_base.h 		spinlock_t	accel;
accel             701 drivers/video/fbdev/matrox/matroxfb_base.h #define CRITBEGIN  spin_lock_irqsave(&minfo->lock.accel, critflags);
accel             702 drivers/video/fbdev/matrox/matroxfb_base.h #define CRITEND	   spin_unlock_irqrestore(&minfo->lock.accel, critflags);
accel             311 drivers/video/fbdev/matrox/matroxfb_crtc2.c 	fix->accel = 0;		/* no accel... */
accel             327 drivers/video/fbdev/mb862xx/mb862xxfb_accel.c 	info->fix.accel = 0xff;	/*FIXME: add right define */
accel             434 drivers/video/fbdev/mb862xx/mb862xxfbdrv.c 	fbi->fix.accel = FB_ACCEL_NONE;
accel             112 drivers/video/fbdev/mbx/mbxfb.c 	.accel = FB_ACCEL_NONE,
accel             110 drivers/video/fbdev/metronomefb.c 	.accel =	FB_ACCEL_NONE,
accel             516 drivers/video/fbdev/mmp/fb/mmpfb.c 	info->fix.accel = FB_ACCEL_NONE;
accel             748 drivers/video/fbdev/mx3fb.c 	fix->accel = FB_ACCEL_NONE;
accel             227 drivers/video/fbdev/neofb.c 	if (info->fix.accel == FB_ACCEL_NEOMAGIC_NM2200 ||
accel             228 drivers/video/fbdev/neofb.c 	    info->fix.accel == FB_ACCEL_NEOMAGIC_NM2230 ||
accel             229 drivers/video/fbdev/neofb.c 	    info->fix.accel == FB_ACCEL_NEOMAGIC_NM2360 ||
accel             230 drivers/video/fbdev/neofb.c 	    info->fix.accel == FB_ACCEL_NEOMAGIC_NM2380) {
accel             969 drivers/video/fbdev/neofb.c 	switch (info->fix.accel) {
accel            1060 drivers/video/fbdev/neofb.c 	switch (info->fix.accel) {
accel            1087 drivers/video/fbdev/neofb.c 	if (info->fix.accel != FB_ACCEL_NEOMAGIC_NM2070) {
accel            1098 drivers/video/fbdev/neofb.c 	if (info->fix.accel != FB_ACCEL_NEOMAGIC_NM2070) {
accel            1105 drivers/video/fbdev/neofb.c 	if (info->fix.accel == FB_ACCEL_NEOMAGIC_NM2160)
accel            1108 drivers/video/fbdev/neofb.c 	if (info->fix.accel == FB_ACCEL_NEOMAGIC_NM2200 ||
accel            1109 drivers/video/fbdev/neofb.c 	    info->fix.accel == FB_ACCEL_NEOMAGIC_NM2230 ||
accel            1110 drivers/video/fbdev/neofb.c 	    info->fix.accel == FB_ACCEL_NEOMAGIC_NM2360 ||
accel            1111 drivers/video/fbdev/neofb.c 	    info->fix.accel == FB_ACCEL_NEOMAGIC_NM2380) {
accel            1141 drivers/video/fbdev/neofb.c 	if (info->fix.accel == FB_ACCEL_NEOMAGIC_NM2200 ||
accel            1142 drivers/video/fbdev/neofb.c 	    info->fix.accel == FB_ACCEL_NEOMAGIC_NM2230 ||
accel            1143 drivers/video/fbdev/neofb.c 	    info->fix.accel == FB_ACCEL_NEOMAGIC_NM2360 ||
accel            1144 drivers/video/fbdev/neofb.c 	    info->fix.accel == FB_ACCEL_NEOMAGIC_NM2380) {
accel            1156 drivers/video/fbdev/neofb.c 	switch (info->fix.accel) {
accel            1495 drivers/video/fbdev/neofb.c 	switch (info->fix.accel) {
accel            1511 drivers/video/fbdev/neofb.c 	switch (info->fix.accel) {
accel            1527 drivers/video/fbdev/neofb.c 	switch (info->fix.accel) {
accel            1543 drivers/video/fbdev/neofb.c 	switch (info->fix.accel) {
accel            1650 drivers/video/fbdev/neofb.c 	switch (info->fix.accel) {
accel            1862 drivers/video/fbdev/neofb.c 	switch (info->fix.accel) {
accel            1894 drivers/video/fbdev/neofb.c 	switch (info->fix.accel) {
accel            1942 drivers/video/fbdev/neofb.c 	info->fix.accel = id->driver_data;
accel            1952 drivers/video/fbdev/neofb.c 	switch (info->fix.accel) {
accel            2008 drivers/video/fbdev/neofb.c 	info->fix.accel = id->driver_data;
accel            1174 drivers/video/fbdev/nvidia/nvidia.c 		info->fix.accel = FB_ACCEL_NV4;
accel            1177 drivers/video/fbdev/nvidia/nvidia.c 		info->fix.accel = FB_ACCEL_NV_10;
accel            1180 drivers/video/fbdev/nvidia/nvidia.c 		info->fix.accel = FB_ACCEL_NV_20;
accel            1183 drivers/video/fbdev/nvidia/nvidia.c 		info->fix.accel = FB_ACCEL_NV_30;
accel            1186 drivers/video/fbdev/nvidia/nvidia.c 		info->fix.accel = FB_ACCEL_NV_40;
accel             409 drivers/video/fbdev/omap/omapfb_main.c 	fix->accel		= FB_ACCEL_OMAP1610;
accel            1918 drivers/video/fbdev/omap/omapfb_main.c module_param_named(accel, def_accel, uint, 0664);
accel             647 drivers/video/fbdev/omap2/omapfb/omapfb-main.c 	fix->accel = FB_ACCEL_NONE;
accel             250 drivers/video/fbdev/p9100.c 	info->fix.accel = FB_ACCEL_SUN_CGTHREE;
accel             336 drivers/video/fbdev/platinumfb.c         info->fix.accel = FB_ACCEL_NONE;
accel             110 drivers/video/fbdev/pm2fb.c 	.accel =	FB_ACCEL_3DLABS_PERMEDIA2,
accel              87 drivers/video/fbdev/pm3fb.c 	.accel =	FB_ACCEL_3DLABS_PERMEDIA3,
accel             959 drivers/video/fbdev/ps3fb.c 	.accel =	FB_ACCEL_NONE,
accel             155 drivers/video/fbdev/pvr2fb.c 	.accel =	FB_ACCEL_NONE,
accel             661 drivers/video/fbdev/pxa168fb.c 	info->fix.accel = FB_ACCEL_NONE;
accel            1819 drivers/video/fbdev/pxafb.c 	fbi->fb.fix.accel	= FB_ACCEL_NONE;
accel            2293 drivers/video/fbdev/pxafb.c 		fbi->fb.fix.accel = FB_ACCEL_PXA3XX;
accel              36 drivers/video/fbdev/q40fb.c 	.accel		= FB_ACCEL_NONE,
accel              93 drivers/video/fbdev/s1d13xxxfb.c 	.accel		= FB_ACCEL_NONE,
accel            1241 drivers/video/fbdev/s3c-fb.c 	fbinfo->fix.accel	= FB_ACCEL_NONE;
accel             907 drivers/video/fbdev/s3c2410fb.c 	fbinfo->fix.accel	    = FB_ACCEL_NONE;
accel            1260 drivers/video/fbdev/s3fb.c 	info->fix.accel = FB_ACCEL_NONE;
accel            1096 drivers/video/fbdev/sa1100fb.c 	fbi->fb.fix.accel	= FB_ACCEL_NONE;
accel            2055 drivers/video/fbdev/savage/savagefb_driver.c 	info->fix.accel       = id->driver_data;
accel            2057 drivers/video/fbdev/savage/savagefb_driver.c 	switch (info->fix.accel) {
accel            1363 drivers/video/fbdev/sh_mobile_lcdcfb.c 	.accel =	FB_ACCEL_NONE,
accel            1655 drivers/video/fbdev/sh_mobile_lcdcfb.c 	.accel =	FB_ACCEL_NONE,
accel              32 drivers/video/fbdev/simplefb.c 	.accel		= FB_ACCEL_NONE,
accel             584 drivers/video/fbdev/sis/sis.h 	int		accel;
accel             295 drivers/video/fbdev/sis/sis_accel.c 	if((!ivideo->accel) || (!ivideo->engineok))
accel             317 drivers/video/fbdev/sis/sis_accel.c 	if((!ivideo->accel) || (!ivideo->engineok)) {
accel             368 drivers/video/fbdev/sis/sis_accel.c 	if((!ivideo->accel) || (!ivideo->engineok)) {
accel            1109 drivers/video/fbdev/sis/sis_main.c 		ivideo->accel = 0;
accel            1296 drivers/video/fbdev/sis/sis_main.c 		ivideo->accel = 0;
accel            1305 drivers/video/fbdev/sis/sis_main.c 		if(!(info->flags & FBINFO_HWACCEL_DISABLED)) ivideo->accel = -1;
accel            1307 drivers/video/fbdev/sis/sis_main.c 		if(var->accel_flags & FB_ACCELF_TEXT) ivideo->accel = -1;
accel            1891 drivers/video/fbdev/sis/sis_main.c 		fix->accel = FB_ACCEL_SIS_GLAMOUR;
accel            1895 drivers/video/fbdev/sis/sis_main.c 		fix->accel = FB_ACCEL_SIS_XABRE;
accel            1897 drivers/video/fbdev/sis/sis_main.c 		fix->accel = FB_ACCEL_XGI_VOLARI_Z;
accel            1899 drivers/video/fbdev/sis/sis_main.c 		fix->accel = FB_ACCEL_XGI_VOLARI_V;
accel            1901 drivers/video/fbdev/sis/sis_main.c 		fix->accel = FB_ACCEL_SIS_GLAMOUR_2;
accel            3910 drivers/video/fbdev/sis/sis_main.c 	if(ivideo->accel) {
accel            6453 drivers/video/fbdev/sis/sis_main.c 		ivideo->accel = 0;
accel            6455 drivers/video/fbdev/sis/sis_main.c 			ivideo->accel = -1;
accel            6468 drivers/video/fbdev/sis/sis_main.c 				     ((ivideo->accel) ? 0 : FBINFO_HWACCEL_DISABLED);
accel              94 drivers/video/fbdev/skeletonfb.c 	.accel =	FB_ACCEL_NONE,
accel            1754 drivers/video/fbdev/sm501fb.c 	fb->fix.accel		= FB_ACCEL_NONE;
accel              81 drivers/video/fbdev/sm712fb.c 	.accel          = FB_ACCEL_SMI_LYNX,
accel             115 drivers/video/fbdev/smscufx.c 	.accel =        FB_ACCEL_NONE,
accel             102 drivers/video/fbdev/ssd1307fb.c 	.accel		= FB_ACCEL_NONE,
accel            1403 drivers/video/fbdev/sstfb.c 	fix->accel	= FB_ACCEL_NONE;  /* FIXME */
accel            1262 drivers/video/fbdev/stifb.c 	fix->accel = FB_ACCEL_NONE;
accel             343 drivers/video/fbdev/tcx.c 	info->fix.accel = FB_ACCEL_SUN_TCX;
accel              91 drivers/video/fbdev/tdfxfb.c 	.accel =	FB_ACCEL_3DFX_BANSHEE
accel            1361 drivers/video/fbdev/tgafb.c 	info->fix.accel = FB_ACCEL_DEC_TGA;
accel             721 drivers/video/fbdev/tmiofb.c 	info->fix.accel = FB_ACCEL_NONE;
accel              57 drivers/video/fbdev/tridentfb.c 	.accel = FB_ACCEL_NONE,
accel            1524 drivers/video/fbdev/tridentfb.c 		tridentfb_fix.accel = FB_ACCEL_TRIDENT_BLADEXP;
accel            1531 drivers/video/fbdev/tridentfb.c 		tridentfb_fix.accel = FB_ACCEL_TRIDENT_BLADE3D;
accel            1537 drivers/video/fbdev/tridentfb.c 		tridentfb_fix.accel = FB_ACCEL_TRIDENT_3DIMAGE;
accel            1543 drivers/video/fbdev/tridentfb.c 		tridentfb_fix.accel = FB_ACCEL_TRIDENT_TGUI;
accel              37 drivers/video/fbdev/udlfb.c 	.accel =        FB_ACCEL_NONE,
accel              43 drivers/video/fbdev/uvesafb.c 	.accel	= FB_ACCEL_NONE,
accel             494 drivers/video/fbdev/vermilion/vermilion.c 	info->fix.accel = FB_ACCEL_NONE;
accel              51 drivers/video/fbdev/vesafb.c 	.accel	= FB_ACCEL_NONE,
accel              64 drivers/video/fbdev/vfb.c 	.accel =	FB_ACCEL_NONE,
accel              98 drivers/video/fbdev/vga16fb.c 	.accel		= FB_ACCEL_NONE
accel             160 drivers/video/fbdev/via/viafbdev.c 	viafbinfo->fix.accel = FB_ACCEL_VIA_UNICHROME;
accel             294 drivers/video/fbdev/vt8500lcdfb.c 	fbi->fb.fix.accel	= FB_ACCEL_NONE;
accel             740 drivers/video/fbdev/vt8623fb.c 	info->fix.accel = FB_ACCEL_NONE;
accel             720 drivers/video/fbdev/w100fb.c 	info->fix.accel = FB_ACCEL_NONE;
accel             286 drivers/video/fbdev/wm8505fb.c 	fbi->fb.fix.accel	= FB_ACCEL_NONE;
accel             455 drivers/video/fbdev/xen-fbfront.c 	fb_info->fix.accel = FB_ACCEL_NONE;
accel             117 drivers/video/fbdev/xilinxfb.c 	.accel =	FB_ACCEL_NONE
accel             172 include/uapi/linux/fb.h 	__u32 accel;			/* Indicate to driver which	*/
accel              32 samples/vfio-mdev/mdpy-fb.c 	.accel		= FB_ACCEL_NONE,