Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 249586
b: refs/heads/master
c: 428faae
h: refs/heads/master
v: v3
  • Loading branch information
K. Y. Srinivasan authored and Greg Kroah-Hartman committed May 11, 2011
1 parent 5b055b6 commit 1f417aa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 40bf63ed45520bef3fa6c91674d71927298cb245
refs/heads/master: 428faae18fb11df531fd9f6b1e314f54819190f1
12 changes: 6 additions & 6 deletions trunk/drivers/staging/hv/blkvsc_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -801,10 +801,10 @@ static void blkvsc_request(struct request_queue *queue)


/* The one and only one */
static struct storvsc_driver blkvsc_drv = {
.base.probe = blkvsc_probe,
.base.remove = blkvsc_remove,
.base.shutdown = blkvsc_shutdown,
static struct hv_driver blkvsc_drv = {
.probe = blkvsc_probe,
.remove = blkvsc_remove,
.shutdown = blkvsc_shutdown,
};

static const struct block_device_operations block_ops = {
Expand All @@ -820,7 +820,7 @@ static const struct block_device_operations block_ops = {
*/
static int blkvsc_drv_init(void)
{
struct hv_driver *drv = &blkvsc_drv.base;
struct hv_driver *drv = &blkvsc_drv;
int ret;

BUILD_BUG_ON(sizeof(sector_t) != 8);
Expand All @@ -844,7 +844,7 @@ static int blkvsc_drv_exit_cb(struct device *dev, void *data)

static void blkvsc_drv_exit(void)
{
struct hv_driver *drv = &blkvsc_drv.base;
struct hv_driver *drv = &blkvsc_drv;
struct device *current_dev;
int ret;

Expand Down

0 comments on commit 1f417aa

Please sign in to comment.