ps3disk.c (da733563be5a9da26fe81d9f007262d00b846e22) ps3disk.c (8d85fce77edfc22f1d6dbf78e3af723b4b556f3d)
1/*
2 * PS3 Disk Storage Driver
3 *
4 * Copyright (C) 2007 Sony Computer Entertainment Inc.
5 * Copyright 2007 Sony Corp.
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published

--- 387 unchanged lines hidden (view full) ---

396 ata_id_c_string(id, priv->model, ATA_ID_PROD, sizeof(priv->model));
397 return 0;
398}
399
400static unsigned long ps3disk_mask;
401
402static DEFINE_MUTEX(ps3disk_mask_mutex);
403
1/*
2 * PS3 Disk Storage Driver
3 *
4 * Copyright (C) 2007 Sony Computer Entertainment Inc.
5 * Copyright 2007 Sony Corp.
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published

--- 387 unchanged lines hidden (view full) ---

396 ata_id_c_string(id, priv->model, ATA_ID_PROD, sizeof(priv->model));
397 return 0;
398}
399
400static unsigned long ps3disk_mask;
401
402static DEFINE_MUTEX(ps3disk_mask_mutex);
403
404static int __devinit ps3disk_probe(struct ps3_system_bus_device *_dev)
404static int ps3disk_probe(struct ps3_system_bus_device *_dev)
405{
406 struct ps3_storage_device *dev = to_ps3_storage_device(&_dev->core);
407 struct ps3disk_private *priv;
408 int error;
409 unsigned int devidx;
410 struct request_queue *queue;
411 struct gendisk *gendisk;
412

--- 178 unchanged lines hidden ---
405{
406 struct ps3_storage_device *dev = to_ps3_storage_device(&_dev->core);
407 struct ps3disk_private *priv;
408 int error;
409 unsigned int devidx;
410 struct request_queue *queue;
411 struct gendisk *gendisk;
412

--- 178 unchanged lines hidden ---